mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
dc0cd880e4
Implementing separated logger module.
28 lines
373 B
CMake
28 lines
373 B
CMake
set(HEADERS
|
|
NewBitmap.h
|
|
iff.h)
|
|
set(CPPS
|
|
NewBitmap.cpp
|
|
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
|
|
logger
|
|
mem
|
|
misc
|
|
stb
|
|
)
|
|
target_include_directories(bitmap PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/bitmap
|
|
>
|
|
)
|