dbbc525174
* 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
11 lines
204 B
CMake
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) |