Files
igl/tutorial/100_FileIO/CMakeLists.txt
T
Daniele Panozzo f3cb5bb4ee added new OpenGL 4 Viewer based on glfw
added two examples for the libigl tutorial
2014-06-15 18:02:23 +02:00

12 lines
246 B
CMake

cmake_minimum_required(VERSION 2.6)
project(100_FileIO)
include("../CMakeLists.shared")
set(SOURCES
${PROJECT_SOURCE_DIR}/main.cpp
)
add_executable(100_FileIO ${SOURCES} ${SHARED_SOURCES})
target_link_libraries(100_FileIO ${SHARED_LIBRARIES})