mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
12 lines
215 B
CMake
12 lines
215 B
CMake
set(LIBNAME "CppUnit")
|
|
|
|
aux_source_directory(src SRCS)
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
|
set_target_properties( ${LIBNAME}
|
|
PROPERTIES
|
|
VERSION "1"
|
|
SOVERSION "1")
|
|
target_link_libraries( ${LIBNAME} )
|
|
|