2022-08-09 13:51:03 +02:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2022-08-09 14:59:58 +02:00
|
|
|
project(LLVMDemangle)
|
2022-08-09 13:51:03 +02:00
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
2022-08-09 14:59:58 +02:00
|
|
|
add_library(LLVMDemangle STATIC
|
2022-08-09 13:51:03 +02:00
|
|
|
source/Demangle.cpp
|
|
|
|
source/DLangDemangle.cpp
|
|
|
|
source/ItaniumDemangle.cpp
|
|
|
|
source/MicrosoftDemangle.cpp
|
|
|
|
source/MicrosoftDemangleNodes.cpp
|
|
|
|
source/RustDemangle.cpp
|
|
|
|
)
|
|
|
|
|
2022-08-09 14:59:58 +02:00
|
|
|
target_include_directories(LLVMDemangle PUBLIC include)
|