1
0
mirror of synced 2024-12-12 07:51:05 +01:00
ImHex/lib/third_party/imgui/custom/CMakeLists.txt

32 lines
1.2 KiB
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.16)
# https://github.com/ocornut/imgui with custom modifications made to the OpenGL 3 and GLFW backends
project(imgui_custom)
set(CMAKE_CXX_STANDARD 17)
add_library(imgui_custom OBJECT
source/imgui_impl_opengl3.cpp
source/imgui_impl_glfw.cpp
)
target_include_directories(imgui_custom PUBLIC
include
)
target_link_libraries(imgui_custom PRIVATE imgui_includes)
set_property(TARGET imgui_custom PROPERTY POSITION_INDEPENDENT_CODE ON)
target_include_directories(imgui_all_includes INTERFACE include)
find_package(PkgConfig REQUIRED)
find_package(OpenGL REQUIRED)
2023-11-20 21:47:23 +01:00
find_package(Freetype REQUIRED)
pkg_search_module(GLFW REQUIRED glfw3)
2023-12-21 16:02:28 +01:00
# pkgsearch somehow reports the glfw3 library as glfw3dll in Release builds on MinGW which is not correct
if ("${GLFW_LIBRARIES}" MATCHES ".+dll")
set(GLFW_LIBRARIES "glfw3")
endif ()
2023-11-20 21:47:23 +01:00
target_include_directories(imgui_custom PUBLIC ${FREETYPE_INCLUDE_DIRS} ${GLFW_INCLUDE_DIRS} ${OpenGL_INCLUDE_DIRS})
target_link_directories(imgui_custom PUBLIC ${FREETYPE_LIBRARY_DIRS} ${GLFW_LIBRARY_DIRS} ${OpenGL_LIBRARY_DIRS})
2023-12-21 16:02:28 +01:00
target_link_libraries(imgui_custom PUBLIC ${GLFW_LIBRARIES} ${OPENGL_LIBRARIES})