1
0
mirror of synced 2025-01-31 03:53:44 +01:00
ImHex/external/llvm/Demangle/CMakeLists.txt
Mary 413443aa95 Build LLVM demangler directly with our sources
This remove dep on LLVM library by building the demangler as part of the
project.

This should help with building on macOS.
2020-12-18 17:56:41 +01:00

14 lines
265 B
CMake

cmake_minimum_required(VERSION 3.16)
project(LLVMDemangle)
set(CMAKE_CXX_STANDARD 17)
add_library(LLVMDemangle
Demangle.cpp
ItaniumDemangle.cpp
MicrosoftDemangle.cpp
MicrosoftDemangleNodes.cpp
)
target_include_directories(LLVMDemangle PUBLIC ../include)