+ lib utils
This commit is contained in:
parent
5cbb27aee3
commit
5b3f42d277
15 changed files with 33 additions and 14 deletions
14
src/utils/CMakeLists.txt
Normal file
14
src/utils/CMakeLists.txt
Normal 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)
|
||||
|
||||
######################################################################################
|
||||
Loading…
Add table
Add a link
Reference in a new issue