mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
15 lines
270 B
CMake
15 lines
270 B
CMake
set(CPPS
|
|
winapp.cpp
|
|
wincon.cpp
|
|
WinController.cpp
|
|
windata.cpp
|
|
wintask.cpp
|
|
)
|
|
|
|
add_library(win32 STATIC ${CPPS})
|
|
add_dependencies(win32 get_git_hash)
|
|
target_include_directories(win32 PRIVATE ${PROJECT_BINARY_DIR}/lib)
|
|
target_link_libraries(win32 PRIVATE
|
|
ddio
|
|
)
|