-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
31 lines (25 loc) · 904 Bytes
/
CMakeLists.txt
File metadata and controls
31 lines (25 loc) · 904 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.12)
option(USE_HEADERONLY "USE_DFM2_HEADERONLY" ON)
IF(NOT USE_HEADERONLY)
message("$$$$$$$$$$$$$$$$$$$$$")
message("generate project as STATIC library: USE_HEADERONLY=${USE_HEADERONLY}")
project(examples_oldgl_glfw_cnpy_static)
add_subdirectory(dfm2_static_glfwold)
ELSE()
message("$$$$$$$$$$$$$$$$$$$$$")
message("generate project as HEADER-ONLY library: USE_HEADERONLY=${USE_HEADERONLY}")
project(examples_oldgl_glfw_cnpy_hdronly)
ENDIF()
add_subdirectory(00_PoseBone)
add_subdirectory(01_RigTransfer)
add_subdirectory(02_Ik)
add_subdirectory(03_IkArap)
add_subdirectory(04_IkImage)
add_subdirectory(05_Ui)
add_subdirectory(10_Cloth)
add_subdirectory(11_ClothPose)
add_subdirectory(12_IkImageCloth)
add_subdirectory(13_ClothPoseRig)
add_subdirectory(14_ClothPoseTexture)
add_subdirectory(15_ClothInitialConfig)
add_subdirectory(20_PoseBoneBlendshape)