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
16 lines
378 B
CMake
Vendored
16 lines
378 B
CMake
Vendored
cmake_minimum_required(VERSION 3.16)
|
|
project(LLVMDemangle)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
|
|
|
|
add_library(LLVMDemangle STATIC
|
|
Demangle/Demangle.cpp
|
|
Demangle/ItaniumDemangle.cpp
|
|
Demangle/MicrosoftDemangle.cpp
|
|
Demangle/MicrosoftDemangleNodes.cpp
|
|
)
|
|
|
|
target_include_directories(LLVMDemangle PUBLIC include)
|