-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
30 lines (19 loc) · 806 Bytes
/
CMakeLists.txt
File metadata and controls
30 lines (19 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
cmake_minimum_required(VERSION 3.0)
#---------------------------
# path of external libralies
#---------------------------
find_path(EIGEN_INC_PATH REQUIRED)
find_path(ASSIMP_INC_PATH REQUIRED)
find_path(ASSIMP_LIB_PATH REQUIRED)
find_path(FREEGLUT_INC_PATH REQUIRED)
find_path(FREEGLUT_LIB_PATH REQUIRED)
find_path(GLEW_INC_PATH REQUIRED)
find_path(GLEW_LIB_PATH REQUIRED)
project(SimpleObjectDrawingLibrary CXX)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${PROJECT_SOURCE_DIR}/bin_samples )
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${PROJECT_SOURCE_DIR}/bin_samples )
add_subdirectory( SimpleObjectDrawLib )
add_subdirectory( SODL_sample_01_LoadModel )
add_subdirectory( SODL_sample_02_6AxRobot )
add_subdirectory( SODL_sample_03_MultiViewPort )
add_subdirectory( SODL_sample_04_DrawGraph )