You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
288 B
10 lines
288 B
11 years ago
|
|
||
|
file(GLOB sources "*.cpp")
|
||
|
file(GLOB headers "*.hpp")
|
||
|
|
||
|
set(libs common ${JCLWrapper_LIBRARIES} ${JNSAppWrapper_LIBRARIES} ${ImageStreams_LIBRARIES} moggle_xxx)
|
||
|
|
||
|
add_library(common ${headers} ${sources})
|
||
|
target_link_libraries(common ${libs})
|
||
|
target_include_directories(common PUBLIC ".")
|