This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/src/CMakeLists.txt
Caner Candan 5b3f42d277 + lib utils
2010-08-24 10:26:36 +02:00

21 lines
791 B
CMake

######################################################################################
### 1) Set all needed source files for the project
######################################################################################
FILE(GLOB HDRS *.h do)
INSTALL(FILES ${HDRS} DESTINATION include/do COMPONENT headers)
FILE(GLOB SOURCES *.cpp)
SET(SAMPLE_SRCS ${SOURCES} PARENT_SCOPE)
######################################################################################
######################################################################################
### 2) Where must cmake go now ?
######################################################################################
ADD_SUBDIRECTORY(utils)
######################################################################################