mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +00:00
2aece028d0
This commit is part of efforts to isolate subsystems of project into own modules.
15 lines
205 B
CMake
15 lines
205 B
CMake
set(HEADERS iff.h)
|
|
set(CPPS
|
|
bitmain.cpp
|
|
bumpmap.cpp
|
|
iff.cpp
|
|
lightmap.cpp
|
|
pcx.cpp
|
|
tga.cpp)
|
|
|
|
add_library(bitmap STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(bitmap PRIVATE
|
|
cfile
|
|
ddebug
|
|
)
|