add basic c++ project setup
This commit is contained in:
21
src/lib/CMakeLists.txt
Normal file
21
src/lib/CMakeLists.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
SET(HDRS)
|
||||
SET(SRCS)
|
||||
SET(LIB_INCLUDE_PATH)
|
||||
|
||||
add_subdirectory(utility)
|
||||
|
||||
SET(HDRS
|
||||
${HDRS}
|
||||
PARENT_SCOPE
|
||||
)
|
||||
|
||||
SET(SRCS
|
||||
${SRCS}
|
||||
PARENT_SCOPE
|
||||
)
|
||||
|
||||
set(LIB_INCLUDE_PATH
|
||||
${LIB_INCLUDE_PATH}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
PARENT_SCOPE
|
||||
)
|
||||
Reference in New Issue
Block a user