stuff-from-scratch/src/image/CMakeLists.txt

23 lines
566 B
CMake
Raw Normal View History

2022-01-01 18:46:31 +00:00
list(APPEND image_HEADERS
Image.h
PngWriter.h
)
list(APPEND image_LIB_INCLUDES
Image.cpp
PngWriter.cpp
2022-08-01 13:00:40 +00:00
PngReader.cpp
2022-01-01 18:46:31 +00:00
)
add_library(image SHARED ${image_LIB_INCLUDES} ${image_HEADERS})
target_include_directories(image PUBLIC
"${CMAKE_CURRENT_SOURCE_DIR}"
)
set_target_properties( image PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON )
find_package(PNG REQUIRED)
2022-05-15 13:58:31 +00:00
target_link_libraries( image PUBLIC PNG::PNG core)
2022-01-01 18:46:31 +00:00
2022-08-01 13:00:40 +00:00
set_property(TARGET image PROPERTY FOLDER src)