5c7a529fa1
* Added imnodes * Added basic data processor view. Still needs to be cleaned up * Make sure all attached links get properly removed when a Node is deleted * Cleanup and API exposing * Added data provider overlays and integrate them with the data processor * Optimized data processing * Node UI enhancements * Added support for all themes to the nodes editor * Improved data processor context menus * Fixed data processor context menu showing up everywhere * Make hex editor context menu behave the same as data processor one * Add different node pin types and prevent incompatible ones from being connected * Don't require explicitly marking node as end node * Fixed plugin copying * Added some more nodes
41 lines
1.3 KiB
CMake
41 lines
1.3 KiB
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(imgui)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
find_package(Freetype REQUIRED)
|
|
pkg_search_module(GLM REQUIRED glm)
|
|
pkg_search_module(GLFW REQUIRED glfw3)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
|
|
|
|
add_library(imgui
|
|
source/imgui.cpp
|
|
source/imgui_demo.cpp
|
|
source/imgui_draw.cpp
|
|
source/imgui_freetype.cpp
|
|
source/imgui_impl_glfw.cpp
|
|
source/imgui_impl_opengl3.cpp
|
|
source/imgui_tables.cpp
|
|
source/imgui_widgets.cpp
|
|
source/ImGuiFileBrowser.cpp
|
|
source/TextEditor.cpp
|
|
source/imgui_imhex_extensions.cpp
|
|
source/imnodes.cpp
|
|
)
|
|
|
|
add_compile_definitions(IMGUI_IMPL_OPENGL_LOADER_GLAD)
|
|
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../glad ${CMAKE_CURRENT_BINARY_DIR}/external/glad)
|
|
|
|
target_include_directories(imgui PUBLIC include ${FREETYPE_INCLUDE_DIRS} ${GLFW_INCLUDE_DIRS})
|
|
|
|
target_link_directories(imgui PUBLIC ${GLM_INCLUDE_DIRS} ${GLFW_LIBRARY_DIRS})
|
|
|
|
if (WIN32)
|
|
target_link_libraries(imgui libstdc++.a libgcc.a libharfbuzz.a libfreetype.a libharfbuzz.a libgraphite2.a libpng.a libbrotlidec-static.a libbrotlicommon-static.a libz.a libbz2.a librpcrt4.a glad libglfw3.a)
|
|
elseif (UNIX)
|
|
target_link_libraries(imgui Freetype::Freetype glad glfw)
|
|
endif()
|