This repository has been archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathCMakeLists.txt
75 lines (66 loc) · 2.64 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
cmake_minimum_required(VERSION 3.8)
if(DEFINED PROJECT_NAME)
set(PPRINT_SUBPROJECT ON)
endif()
project(pprint VERSION 1.0.0 LANGUAGES CXX
HOMEPAGE_URL "https://github.com/p-ranav/pprint"
DESCRIPTION "Pretty Printer for Modern C++")
option(PPRINT_BUILD_TESTS "Build PPrint tests + enable CTest")
include(CMakePackageConfigHelpers)
include(GNUInstallDirs)
add_library(pprint INTERFACE)
add_library(pprint::pprint ALIAS pprint)
target_compile_features(pprint INTERFACE cxx_std_17)
target_include_directories(pprint INTERFACE
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>)
if(PPRINT_BUILD_TESTS)
enable_testing()
add_subdirectory(test)
endif()
if(NOT PPRINT_SUBPROJECT)
configure_file(pprint.pc.in pprint.pc @ONLY)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/pprint.pc"
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
write_basic_package_version_file(pprintConfigVersion.cmake
COMPATIBILITY AnyNewerVersion)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/pprintConfigVersion.cmake
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/pprint)
install(TARGETS pprint EXPORT pprintConfig)
install(EXPORT pprintConfig
NAMESPACE pprint::
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/pprint)
install(FILES ${CMAKE_CURRENT_LIST_DIR}/include/pprint.hpp
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/pprint)
install(FILES LICENSE
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/licenses/pprint)
if(EXISTS "${PROJECT_SOURCE_DIR}/.gitignore")
# Simple glob to regex conversion (.gitignore => CPACK_SOURCE_IGNORE_FILES)
file(READ ".gitignore" DOT_GITIGNORE)
string(REPLACE ";" "RANDOMSEQUENCE" DOT_GITIGNORE "${DOT_GITIGNORE}")
string(REPLACE "\n" ";" DOT_GITIGNORE "${DOT_GITIGNORE}")
string(REPLACE "RANDOMSEQUENCE" "\\;" DOT_GITIGNORE "${DOT_GITIGNORE}")
foreach(IGNORE_LINE ${DOT_GITIGNORE})
if(NOT IGNORE_LINE OR IGNORE_LINE MATCHES "^#")
continue()
endif()
string(REPLACE "\\" "\\\\" IGNORE_LINE "${IGNORE_LINE}")
string(REPLACE "." "\\\\." IGNORE_LINE "${IGNORE_LINE}")
string(REPLACE "*" ".*" IGNORE_LINE "${IGNORE_LINE}")
string(REPLACE "+" "\\\\+" IGNORE_LINE "${IGNORE_LINE}")
list(APPEND CPACK_SOURCE_IGNORE_FILES "${IGNORE_LINE}")
endforeach()
endif()
# extra ignored files
list(APPEND CPACK_SOURCE_IGNORE_FILES
.editorconfig
.git
.gitignore
.travis.yml
.appveyor.yml
)
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${PROJECT_NAME}-${PROJECT_VERSION}")
set(CPACK_GENERATOR "TGZ;TXZ")
set(CPACK_SOURCE_GENERATOR "TGZ;TXZ")
include(CPack)
endif()