Files
LumonMDR/libs/Image/CMakeLists.txt

15 lines
279 B
CMake
Raw Normal View History

2025-02-08 15:12:24 -05:00
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
)