Descent3/bitmap/CMakeLists.txt
2024-05-09 22:46:17 +01:00

20 lines
286 B
CMake

set(HEADERS iff.h)
set(CPPS
NewBitmap.cpp
NewBitmap.h
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
stb
)
target_include_directories(bitmap PUBLIC .)