1
0
mirror of synced 2024-09-24 11:38:26 +02:00
ImHex/lib/third_party/llvm-demangle/CMakeLists.txt
iTrooz f0465c63ed
build: move third party libraries to lib/third_party (#1417)
Co-authored-by: Nik <werwolv98@gmail.com>
2023-11-12 02:02:54 +01:00

16 lines
362 B
CMake

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