mason/src2/CMakeLists.txt

14 lines
179 B
CMake
Raw Normal View History

2023-09-17 19:34:00 +00:00
set(SOURCES
collection.cpp
2023-09-18 18:59:43 +00:00
loggable.cpp
2023-09-17 19:34:00 +00:00
)
set(HEADERS
collection.h
2023-09-18 18:59:43 +00:00
loggable.h
2023-09-17 19:34:00 +00:00
)
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})
2023-09-18 18:59:43 +00:00
add_subdirectory(components)