mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
59487976f6
Isolate misc module for better dependency handling.
12 lines
150 B
CMake
12 lines
150 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
d3movie.cpp)
|
|
|
|
add_library(movie STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(movie PRIVATE
|
|
ddio
|
|
libmve
|
|
mem
|
|
misc
|
|
)
|