Descent3/bitmap/CMakeLists.txt
Azamat H. Hackimov 59487976f6 Isolate misc module
Isolate misc module for better dependency handling.
2024-06-27 01:26:35 +03:00

27 lines
363 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
ddio
mem
misc
stb
)
target_include_directories(bitmap PUBLIC
$<BUILD_INTERFACE:
${PROJECT_SOURCE_DIR}/bitmap
>
)