Files
igl/tutorial/507_PolyVectorField/CMakeLists.txt
T
Daniele Panozzo 5c81bd50ff Merge commit 'a3c17ec2eb057e3a8f779d448cc0cf9bd0e684ac'
small changes to make it compile with gcc 4.7
2014-06-30 00:56:53 +02:00

12 lines
294 B
CMake

cmake_minimum_required(VERSION 2.6)
project(507_PolyVectorField)
include("../CMakeLists.shared")
set(SOURCES
${PROJECT_SOURCE_DIR}/main.cpp
)
add_executable(${PROJECT_NAME}_bin ${SOURCES} ${SHARED_SOURCES})
target_link_libraries(${PROJECT_NAME}_bin ${SHARED_LIBRARIES} ${LIBCOMISO_LIBRARY})