Descent3/win32/CMakeLists.txt
Azamat H. Hackimov 2aece028d0 Move debug functions to own module
This commit is part of efforts to isolate subsystems of project into own modules.
2024-04-30 00:58:34 +03:00

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)