20 lines
291 B
CMake
20 lines
291 B
CMake
set(SOURCES
|
|
component.cpp
|
|
collection.cpp
|
|
loggable.cpp
|
|
taskmanager.cpp
|
|
download.cpp
|
|
atomicmutex.cpp
|
|
)
|
|
|
|
set(HEADERS
|
|
component.h
|
|
collection.h
|
|
loggable.h
|
|
taskmanager.h
|
|
download.h
|
|
atomicmutex.h
|
|
)
|
|
|
|
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})
|