+ lib utils

This commit is contained in:
Caner Candan 2010-08-24 10:26:36 +02:00
commit 5b3f42d277
15 changed files with 33 additions and 14 deletions

14
src/utils/CMakeLists.txt Normal file
View file

@ -0,0 +1,14 @@
######################################################################################
### 1) Set all needed source files for the project
######################################################################################
FILE(GLOB SOURCES *.cpp)
SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib)
ADD_LIBRARY(doutils ${SOURCES})
INSTALL(TARGETS doutils ARCHIVE DESTINATION lib COMPONENT libraries)
FILE(GLOB HDRS *.h utils)
INSTALL(FILES ${HDRS} DESTINATION include/do/utils COMPONENT headers)
######################################################################################