mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +00:00
2aece028d0
This commit is part of efforts to isolate subsystems of project into own modules.
13 lines
259 B
CMake
13 lines
259 B
CMake
set(HEADERS win32os.h)
|
|
set(CPPS
|
|
winapp.cpp
|
|
wincon.cpp
|
|
WinController.cpp
|
|
windata.cpp
|
|
wintask.cpp
|
|
)
|
|
|
|
add_library(win32 STATIC ${HEADERS} ${CPPS})
|
|
add_dependencies(win32 get_git_hash)
|
|
target_include_directories(win32 PRIVATE ${PROJECT_BINARY_DIR}/lib)
|