CMakeLists.txt 318 B

123456789
  1. cmake_minimum_required(VERSION 2.6)
  2. project(403_BoundedBiharmonicWeights)
  3. include_directories(${LIBIGL_INCLUDE_DIRS})
  4. add_definitions(${LIBIGL_DEFINITIONS})
  5. add_executable(${PROJECT_NAME}_bin
  6. main.cpp
  7. ${LIBIGL_EXTRA_SOURCES})
  8. target_link_libraries(${PROJECT_NAME}_bin ${LIBIGL_LIBRARIES} ${LIBIGL_EXTRA_LIBRARIES})