diff --git a/Apps/Examples/Debug/CMakeLists.txt b/Apps/Examples/Debug/CMakeLists.txt index 0f4e822cb4d37f58eed5b9bc689b071f975f966c..1091da64dd0016745251ee36acdd75efaf85ba4f 100644 --- a/Apps/Examples/Debug/CMakeLists.txt +++ b/Apps/Examples/Debug/CMakeLists.txt @@ -15,6 +15,7 @@ include_directories( ${CGoGN_ROOT_DIR}/ThirdParty/AntTweakBar/include ${CGoGN_ROOT_DIR}/ThirdParty/OpenCTM ${CGoGN_ROOT_DIR}/ThirdParty/Assimp/include + ${CGoGN_ROOT_DIR}/ThirdParty/glm ) # define libs path diff --git a/Apps/Examples/Release/CMakeLists.txt b/Apps/Examples/Release/CMakeLists.txt index 85ae2ff33b07d9fdfea611a2a2588e9a8970eae1..5abdd872f83d8dc093f4ce86f352b5fc88c0a84b 100644 --- a/Apps/Examples/Release/CMakeLists.txt +++ b/Apps/Examples/Release/CMakeLists.txt @@ -16,6 +16,7 @@ include_directories( ${CGoGN_ROOT_DIR}/ThirdParty/AntTweakBar/include ${CGoGN_ROOT_DIR}/ThirdParty/OpenCTM ${CGoGN_ROOT_DIR}/ThirdParty/Assimp/include + ${CGoGN_ROOT_DIR}/ThirdParty/glm ) diff --git a/Apps/Tuto/CMakeLists.txt b/Apps/Tuto/CMakeLists.txt index 4528eb46d0c051bc359749dd1f0de7646abbb41e..f4f86d85a7d593bd4330847b58a20942a254aaae 100644 --- a/Apps/Tuto/CMakeLists.txt +++ b/Apps/Tuto/CMakeLists.txt @@ -5,8 +5,8 @@ project(Tutos) #SET (COMMON_LIBS ${GLUT_LIBRARY} ${OPENGL_LIBRARY} ${GLEW_LIBRARY} ${DEVIL_LIBRARIES} ${ZLIB_LIBRARIES} ${LIBXML2_LIBRARIES} gzstream AntTweakBar openctm) -SET (CMAKE_BUILD_TYPE Debug) -#SET(CMAKE_BUILD_TYPE Release) +#SET (CMAKE_BUILD_TYPE Debug) +SET(CMAKE_BUILD_TYPE Release) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DNOTOPOWARNING") @@ -55,11 +55,9 @@ target_link_libraries( tp_master add_executable( tuto_mt tuto_mt.cpp) target_link_libraries( tuto_mt - containerD topologyD utilsD algoD ${COMMON_LIBS} boost_thread) -# container topology utils algo ${COMMON_LIBS} boost_thread) + container topology utils algo ${COMMON_LIBS} boost_thread) add_executable( tuto_ogl3 tuto_ogl3.cpp) target_link_libraries( tuto_ogl3 - containerD topologyD utilsD algoD ${COMMON_LIBS} ) -# container topology utils algo ${COMMON_LIBS} ) + container topology utils algo ${COMMON_LIBS} )