Revision: | 294 |
Committed: | Tue Nov 8 04:27:56 2011 UTC (13 years, 9 months ago) by francois |
Content type: | text/plain |
File size: | 303 byte(s) |
Log Message: | Librairies statiques ou dynamiques au choix a la compilation |
# | Content |
---|---|
1 | |
2 | file(GLOB SRC src/*.cpp) |
3 | set(STEP_SOURCE ${SRC} ) |
4 | include_directories(src ../outil/src ../template/src ../parseur/src) |
5 | if (OPTION_SHARED) |
6 | add_library(step SHARED ${STEP_SOURCE} ) |
7 | else (OPTION_SHARED) |
8 | add_library(step ${STEP_SOURCE} ) |
9 | endif (OPTION_SHARED) |
10 | target_link_libraries(step parseur outil) |
11 | |
12 | |
13 |