mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
18 lines
495 B
CMake
18 lines
495 B
CMake
cmake_minimum_required(VERSION 3.18)
|
|
|
|
# Note, version set explicitly by xrpld project
|
|
project(antithesis-sdk-cpp VERSION 0.4.4 LANGUAGES CXX)
|
|
|
|
add_library(antithesis-sdk-cpp INTERFACE antithesis_sdk.h)
|
|
|
|
# Note, both sections below created by xrpld project
|
|
target_include_directories(antithesis-sdk-cpp INTERFACE
|
|
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
)
|
|
|
|
install(
|
|
FILES antithesis_sdk.h
|
|
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}"
|
|
)
|