ebbbcafe5c
* build: Add libcurl * build: Stop the whole static linking on Windows mess. There's no use anymore * sys: Added update detector and moved some startup tasks to splash screen * sys: Updated ImHex icon * fix: Settings button on welcome page once again works * build: Fix build on Linux * sys: Fixed splash window not searching all paths for resources
14 lines
261 B
CMake
14 lines
261 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(glad)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
|
|
|
|
add_library(glad STATIC
|
|
source/glad.c
|
|
)
|
|
|
|
target_include_directories(glad PUBLIC include)
|
|
|
|
target_link_libraries(glad PRIVATE dl) |