13 lines
343 B
CMake
13 lines
343 B
CMake
radiant_plugin(image
|
|
bmp.cpp bmp.h
|
|
dds.cpp dds.h
|
|
image.cpp
|
|
jpeg.cpp jpeg.h
|
|
ktx.cpp ktx.h
|
|
pcx.cpp pcx.h
|
|
tga.cpp tga.h
|
|
)
|
|
|
|
find_package(JPEG REQUIRED)
|
|
target_include_directories(image PRIVATE ${JPEG_INCLUDE_DIR})
|
|
target_link_libraries(image PRIVATE ddslib etclib ${JPEG_LIBRARIES})
|