Descent3/manage/CMakeLists.txt
Azamat H. Hackimov 4826c37a69 Add BUILD_INTERFACE to cfile module
Other modules that depends on it, can reuse includes on linking.
There some files formally not belonging any packages (lib directory), as workaround there temporary include_directories(cfile) on root of project. After migrating all modules this can be removed.
2024-04-24 00:41:02 +03:00

28 lines
411 B
CMake

set(HEADERS
doorpage.h
gamefilepage.h
genericpage.h
megapage.h
powerpage.h
robotpage.h
shippage.h
soundpage.h
texpage.h
weaponpage.h)
set(CPPS
doorpage.cpp
gamefilepage.cpp
generic.cpp
manage.cpp
megapage.cpp
pagelock.cpp
shippage.cpp
soundpage.cpp
texpage.cpp
weaponpage.cpp)
add_library(manage STATIC ${HEADERS} ${CPPS})
target_link_libraries(manage PRIVATE
cfile
)