1 |
francois |
253 |
file(GLOB SRC src/*.cpp) |
2 |
|
|
set(GEOMETRIE_SOURCE ${SRC}) |
3 |
|
|
include_directories(src ../outil/src ../template/src ../parseur/src ../sat/src ../step/src ../materiau/src ${EXTERNAL_INCLUDES} ) |
4 |
francois |
294 |
if (OPTION_SHARED) |
5 |
francois |
253 |
add_library(geometrie SHARED ${GEOMETRIE_SOURCE} ) |
6 |
francois |
294 |
else (OPTION_SHARED) |
7 |
|
|
add_library(geometrie ${GEOMETRIE_SOURCE} ) |
8 |
|
|
endif (OPTION_SHARED) |
9 |
francois |
295 |
#target_link_libraries(geometrie ${INTERNAL_LIBRARIES} ${EXTERNAL_LIBRARIES} ) |
10 |
francois |
253 |
|
11 |
|
|
|
12 |
|
|
|