mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
14 lines
196 B
CMake
14 lines
196 B
CMake
set(CPPS
|
|
video_lnx.cpp
|
|
)
|
|
|
|
add_library(dd_video STATIC ${CPPS})
|
|
target_link_libraries(dd_video PRIVATE
|
|
$<$<PLATFORM_ID:Linux,Darwin>:
|
|
linux
|
|
>
|
|
$<$<PLATFORM_ID:Windows>:
|
|
misc
|
|
>
|
|
)
|