16 |
|
option(ENABLE_STEP "Enable Step" ON) |
17 |
|
option(ENABLE_IBREP "Enable IBREP" OFF) |
18 |
|
option(ENABLE_GNURBS "Enable gnurbs" OFF) |
19 |
+ |
option(ENABLE_TEST "Enable test" OFF) |
20 |
|
|
21 |
|
if(ENABLE_OCC) |
22 |
|
if(WIN32) |
78 |
|
add_definitions(-DBREP_STEP) |
79 |
|
endif(ENABLE_STEP) |
80 |
|
|
80 |
– |
|
81 |
– |
add_subdirectory(lib) |
82 |
– |
add_subdirectory(app) |
83 |
– |
|
81 |
|
if(ENABLE_IBREP) |
82 |
|
add_subdirectory(IBrep) |
83 |
|
endif(ENABLE_IBREP) |
86 |
|
add_subdirectory(gnurbs) |
87 |
|
endif(ENABLE_GNURBS) |
88 |
|
|
89 |
+ |
add_subdirectory(lib) |
90 |
+ |
add_subdirectory(app) |
91 |
+ |
|
92 |
+ |
|
93 |
|
|