Files
igl/tutorial/709_VectorFieldVisualizer/CMakeLists.txt
T
pancha e9db1095fd * adding streamline code and tutorial
* adding python bindings for streamline and python tutorial


Former-commit-id: 9abb24e0bc
2016-08-11 10:37:34 -04:00

9 lines
374 B
CMake

cmake_minimum_required(VERSION 2.8.12)
project(709_VectorFieldVisualizer)
add_executable(${PROJECT_NAME}_bin
main.cpp)
target_include_directories(${PROJECT_NAME}_bin PRIVATE ${LIBIGL_INCLUDE_DIRS})
target_compile_definitions(${PROJECT_NAME}_bin PRIVATE ${LIBIGL_DEFINITIONS})
target_link_libraries(${PROJECT_NAME}_bin ${LIBIGL_LIBRARIES} ${LIBIGL_EXTRA_LIBRARIES})