mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
28 lines
363 B
CMake
28 lines
363 B
CMake
set(HEADERS
|
|
gr.h
|
|
lib2d.h
|
|
)
|
|
set(CPPS
|
|
font.cpp
|
|
hardsurf.cpp
|
|
memsurf.cpp
|
|
pen.cpp
|
|
pentext.cpp
|
|
screen.cpp
|
|
surface.cpp
|
|
viewport.cpp
|
|
)
|
|
|
|
add_library(2dlib STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(2dlib PRIVATE
|
|
cfile
|
|
ddebug
|
|
logger
|
|
mem
|
|
)
|
|
target_include_directories(2dlib PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/2dlib
|
|
>
|
|
)
|