mirror of https://github.com/AxioDL/nod.git
Cmake config support
This commit is contained in:
parent
be8409681f
commit
f1c76a475d
|
@ -1,10 +1,12 @@
|
|||
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
||||
cmake_minimum_required(VERSION 3.10 FATAL_ERROR) # because of c++17
|
||||
project(nod)
|
||||
project(nod VERSION 0.1)
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
endif()
|
||||
|
||||
include (CMakePackageConfigHelpers)
|
||||
|
||||
if (MSVC)
|
||||
# Shaddup MSVC
|
||||
add_definitions(-DUNICODE=1 -D_UNICODE=1 -D__SSE__=1 -D_CRT_SECURE_NO_WARNINGS=1 -DD_SCL_SECURE_NO_WARNINGS=1
|
||||
|
@ -22,3 +24,41 @@ file(GLOB NOD_HEADERS include/nod/*.h*)
|
|||
add_subdirectory(lib)
|
||||
add_subdirectory(driver)
|
||||
install(DIRECTORY include/nod DESTINATION include/nod)
|
||||
|
||||
set(version_config_file "${PROJECT_BINARY_DIR}/nodConfigVersion.cmake")
|
||||
set(config_file "${PROJECT_BINARY_DIR}/nodConfig.cmake")
|
||||
set(config_install_dir "lib/cmake/nod")
|
||||
|
||||
# Associate target with export
|
||||
install(
|
||||
TARGETS nod
|
||||
EXPORT nodTargets
|
||||
ARCHIVE DESTINATION "lib"
|
||||
INCLUDES DESTINATION "include/nod" # This sets the INTERFACE_INCLUDE_DIRECTORIES property of the target.
|
||||
)
|
||||
|
||||
# Install the target config files
|
||||
install(
|
||||
EXPORT nodTargets
|
||||
NAMESPACE "nod::"
|
||||
DESTINATION "${config_install_dir}"
|
||||
)
|
||||
|
||||
# Generate version config file
|
||||
write_basic_package_version_file(
|
||||
"${version_config_file}"
|
||||
COMPATIBILITY SameMajorVersion
|
||||
)
|
||||
|
||||
# Generate config file
|
||||
configure_package_config_file(
|
||||
"Config.cmake.in"
|
||||
"${config_file}"
|
||||
INSTALL_DESTINATION "lib/cmake/nod"
|
||||
)
|
||||
|
||||
# Install the config files
|
||||
install(
|
||||
FILES "${config_file}" "${version_config_file}"
|
||||
DESTINATION ${config_install_dir}
|
||||
)
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
@PACKAGE_INIT@
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/nodTargets.cmake")
|
||||
check_required_components(nod)
|
2
logvisor
2
logvisor
|
@ -1 +1 @@
|
|||
Subproject commit 01e291833ba4d7f2a596c32cf6158cb6a9327ad7
|
||||
Subproject commit 02cef9479eea2c444715c0a84cb7aa3c8f41c1ee
|
Loading…
Reference in New Issue