diff options
Diffstat (limited to 'flow/gslpp/CMakeLists.txt')
-rw-r--r-- | flow/gslpp/CMakeLists.txt | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/flow/gslpp/CMakeLists.txt b/flow/gslpp/CMakeLists.txt index bf145a6..cd8576c 100644 --- a/flow/gslpp/CMakeLists.txt +++ b/flow/gslpp/CMakeLists.txt @@ -16,9 +16,11 @@ include_directories( ${GLIB2_INCLUDE_DIRS} ) -set( gslpp_SRCS - datahandle.cpp -) -add_library( gslpp STATIC ${gslpp_SRCS} ) -set_target_properties( gslpp PROPERTIES COMPILE_FLAGS -fPIC)
\ No newline at end of file +##### gslpp (static lib) ######################## + +set( target gslpp ) + +tde_add_library( ${target} STATIC_PIC + SOURCES datahandle.cpp +) |