mirror of
https://github.com/andrewchilicki/LumonMDR.git
synced 2025-07-01 18:17:27 -04:00
15 lines
279 B
CMake
15 lines
279 B
CMake
add_library(Image
|
|
Image.h
|
|
ImageDisplay.cpp ImageDisplay.h
|
|
)
|
|
|
|
target_include_directories(Image PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/external/stb
|
|
)
|
|
|
|
target_link_libraries(Image PUBLIC
|
|
ImGui
|
|
OpenGL::GL
|
|
glfw
|
|
) |