Revision 858, 505 bytes
(checked in by prikryl, 15 years ago)
|
Added getramext_vgs subdirectory.
Define also DLL_PATH.
|
Line | |
---|
1 | # Simulator library |
---|
2 | IF(WIN32) |
---|
3 | add_subdirectory ( eh_api ) |
---|
4 | add_subdirectory ( vgs_api ) |
---|
5 | add_subdirectory ( getramext_vgs ) |
---|
6 | |
---|
7 | include_directories(./els3/include ./eh_api ./vgs_api) |
---|
8 | |
---|
9 | add_definitions ( |
---|
10 | -DBASE_PATH="${CMAKE_CURRENT_SOURCE_DIR}" |
---|
11 | -DDLL_PATH="${DLL_DIRECTORY}" |
---|
12 | ) |
---|
13 | add_library (aimsun_bdm aimsun_ds.cpp aimsun_ds.h tools.cpp tools.h) |
---|
14 | # add_library (aimsun_bdm aimsun_fake.cpp aimsun_fake.h) |
---|
15 | ELSE(WIN32) |
---|
16 | add_library (aimsun_bdm aimsun_fake.cpp aimsun_fake.h) |
---|
17 | endif(WIN32) |
---|