mason/src2/CMakeLists.txt

20 lines
291 B
CMake
Raw Normal View History

2023-09-17 19:34:00 +00:00
set(SOURCES
2023-09-20 19:45:22 +00:00
component.cpp
2023-09-17 19:34:00 +00:00
collection.cpp
2023-09-18 18:59:43 +00:00
loggable.cpp
2023-09-20 00:25:38 +00:00
taskmanager.cpp
download.cpp
atomicmutex.cpp
2023-09-17 19:34:00 +00:00
)
set(HEADERS
2023-09-20 19:45:22 +00:00
component.h
2023-09-17 19:34:00 +00:00
collection.h
2023-09-18 18:59:43 +00:00
loggable.h
2023-09-20 00:25:38 +00:00
taskmanager.h
download.h
atomicmutex.h
2023-09-17 19:34:00 +00:00
)
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})