Descent3/2dlib/CMakeLists.txt

17 lines
235 B
CMake
Raw Normal View History

set(HEADERS lib2d.h)
set(CPPS
font.cpp
hardsurf.cpp
memsurf.cpp
pen.cpp
pentext.cpp
screen.cpp
surface.cpp
viewport.cpp)
2024-04-16 03:43:29 +00:00
add_library(2dlib STATIC ${HEADERS} ${CPPS})
target_link_libraries(2dlib PRIVATE
cfile
mem
)