1
0
mirror of synced 2024-11-15 03:27:40 +01:00
ImHex/external/glad/CMakeLists.txt
WerWolv dbbc525174
Added Plugin support (#102)
* Build refactoring and initial plugin support

* Possibly fixed linux / mac build

* Added libdl to libglad build script

* Add glfw to imgui dependencies

* Refactored common functionality into "libimhex" for plugins

* Added plugin loading and example plugin

* Added proper API for creating a custom view and a custom tools entry with plugins
2020-12-22 18:10:01 +01:00

11 lines
204 B
CMake

cmake_minimum_required(VERSION 3.16)
project(glad)
set(CMAKE_CXX_STANDARD 17)
add_library(glad
source/glad.c
)
target_include_directories(glad PUBLIC include)
target_link_libraries(glad PRIVATE dl)