mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
00389c50ea
- tabs to spaces - use Unix line endings everywhere - newline at end of file - remove trailing white space - no space between keywords and opening parenthesis - use 2 spaces to indent
14 lines
184 B
CMake
14 lines
184 B
CMake
set(HEADERS 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})
|
|
|