mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
59487976f6
Isolate misc module for better dependency handling.
27 lines
363 B
CMake
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
|
|
>
|
|
)
|