git repos / PlatformFolders

blame: CMakeLists.txt

normal view · raw

3e5ce8ff sum01 2018-04-16 21:01 1
# For target_compile_features
3e5ce8ff sum01 2018-04-16 21:01 2
cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
2eed66df Poul Sander 2021-08-08 15:35 3
project(platform_folders VERSION 4.1.0 LANGUAGES CXX)
d483775b sum01 2018-04-16 03:05 4
158fba39 Olivier LDff 2021-08-16 13:17 5
# BUILD_SHARED_LIBS is off by default, the library will be static by default
158fba39 Olivier LDff 2021-08-16 13:17 6
option(PLATFORMFOLDERS_BUILD_SHARED_LIBS "Build platform_folders shared library" ${BUILD_SHARED_LIBS})
158fba39 Olivier LDff 2021-08-16 13:17 7
set(PLATFORMFOLDERS_TYPE STATIC)
158fba39 Olivier LDff 2021-08-16 13:17 8
if(PLATFORMFOLDERS_BUILD_SHARED_LIBS)
158fba39 Olivier LDff 2021-08-16 13:17 9
	set(PLATFORMFOLDERS_TYPE SHARED)
158fba39 Olivier LDff 2021-08-16 13:17 10
endif()
d483775b sum01 2018-04-16 03:05 11
158fba39 Olivier LDff 2021-08-16 13:17 12
add_library(platform_folders ${PLATFORMFOLDERS_TYPE}
d483775b sum01 2018-04-16 03:05 13
	sago/platform_folders.cpp
d483775b sum01 2018-04-16 03:05 14
)
d483775b sum01 2018-04-16 03:05 15
0612064c Poul Sander 2021-07-20 22:24 16
set_target_properties(platform_folders PROPERTIES DEBUG_POSTFIX "${CMAKE_DEBUG_POSTFIX}")
37c4304d Domen Mori 2019-12-02 21:01 17
5b487573 sum01 2019-03-06 19:14 18
# Creates an alias so that people building in-tree (instead of using find_package)...
5b487573 sum01 2019-03-06 19:14 19
# can still link against the same target
5b487573 sum01 2019-03-06 19:14 20
add_library(sago::platform_folders ALIAS platform_folders)
5b487573 sum01 2019-03-06 19:14 21
80e52811 sum01 2018-05-04 17:14 22
# Defines standardized defaults for install paths
80e52811 sum01 2018-05-04 17:14 23
include(GNUInstallDirs)
80e52811 sum01 2018-05-04 17:14 24
# Where to search for the header while building
80e52811 sum01 2018-05-04 17:14 25
target_include_directories(platform_folders PUBLIC
d483775b sum01 2018-04-16 03:05 26
	$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/sago>
80e52811 sum01 2018-05-04 17:14 27
	# Controls where #include <sago/platform_folders.h> starts to look from
80e52811 sum01 2018-05-04 17:14 28
	# So /usr/include/<sago/platform_folders.h>
80e52811 sum01 2018-05-04 17:14 29
	# or C:\Program Files\platform_folders\include\<sago/platform_folders.h>
80e52811 sum01 2018-05-04 17:14 30
	$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
d483775b sum01 2018-04-16 03:05 31
)
d483775b sum01 2018-04-16 03:05 32
d483775b sum01 2018-04-16 03:05 33
# Define the header as public for installation
80e52811 sum01 2018-05-04 17:14 34
set_target_properties(platform_folders PROPERTIES
d483775b sum01 2018-04-16 03:05 35
	PUBLIC_HEADER "sago/platform_folders.h"
d483775b sum01 2018-04-16 03:05 36
)
d483775b sum01 2018-04-16 03:05 37
2cbeb56e sum01 2018-06-04 00:10 38
# cxx_std_11 requires v3.8
2cbeb56e sum01 2018-06-04 00:10 39
if(CMAKE_VERSION VERSION_LESS "3.8.0")
2cbeb56e sum01 2018-06-04 00:10 40
	# Use old method of forcing C++11
2cbeb56e sum01 2018-06-04 00:10 41
	set(CMAKE_CXX_STANDARD 11)
2cbeb56e sum01 2018-06-04 00:10 42
	set(CMAKE_CXX_STANDARD_REQUIRED true)
2cbeb56e sum01 2018-06-04 00:10 43
else()
2cbeb56e sum01 2018-06-04 00:10 44
	# Require (minimum) C++11 when using header
2cbeb56e sum01 2018-06-04 00:10 45
	# PRIVATE means only at compile time
2cbeb56e sum01 2018-06-04 00:10 46
	target_compile_features(platform_folders PUBLIC cxx_std_11)
2cbeb56e sum01 2018-06-04 00:10 47
endif()
2cbeb56e sum01 2018-06-04 00:10 48
2cbeb56e sum01 2018-06-04 00:10 49
# cxx_nullptr exists in v3.1
2cbeb56e sum01 2018-06-04 00:10 50
target_compile_features(platform_folders PRIVATE cxx_nullptr)
3e5ce8ff sum01 2018-04-16 21:01 51
2e81279d sum01 2018-06-21 15:13 52
# Cmake's find_package search path is different based on the system
2e81279d sum01 2018-06-21 15:13 53
# See https://cmake.org/cmake/help/latest/command/find_package.html for the list
6daea864 sago007 2018-06-06 20:45 54
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
6daea864 sago007 2018-06-06 20:45 55
	# You can pass these when calling Cmake, so don't override if the user does
6daea864 sago007 2018-06-06 20:45 56
	if(NOT _WIN32_WINNT AND NOT WINVER)
6daea864 sago007 2018-06-06 20:45 57
		target_compile_definitions(platform_folders PRIVATE
6daea864 sago007 2018-06-06 20:45 58
			_WIN32_WINNT=0x0601
6daea864 sago007 2018-06-06 20:45 59
			WINVER=0x0601
6daea864 sago007 2018-06-06 20:45 60
		)
6daea864 sago007 2018-06-06 20:45 61
	endif()
80e52811 sum01 2018-05-04 17:14 62
	# Controls where the exports, config, and configversion files install to
80e52811 sum01 2018-05-04 17:14 63
	set(_PROJECT_INSTALL_CMAKE_DIR "${CMAKE_INSTALL_PREFIX}/cmake")
80e52811 sum01 2018-05-04 17:14 64
else()
80e52811 sum01 2018-05-04 17:14 65
	# When calling find_package(<name>)
80e52811 sum01 2018-05-04 17:14 66
	# it looks for /usr/lib/cmake/<name>/<name>Config.cmake
80e52811 sum01 2018-05-04 17:14 67
	set(_PROJECT_INSTALL_CMAKE_DIR "${CMAKE_INSTALL_LIBDIR}/cmake/platform_folders")
80e52811 sum01 2018-05-04 17:14 68
endif()
d483775b sum01 2018-04-16 03:05 69
d483775b sum01 2018-04-16 03:05 70
# Gives "Make install" esque operations a location to install to...
d483775b sum01 2018-04-16 03:05 71
# and creates a .cmake file to be exported
80e52811 sum01 2018-05-04 17:14 72
install(TARGETS platform_folders
c8e9ee00 sum01 2018-06-21 15:16 73
	EXPORT "platform_foldersConfig"
80e52811 sum01 2018-05-04 17:14 74
	LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
80e52811 sum01 2018-05-04 17:14 75
	ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}"
80e52811 sum01 2018-05-04 17:14 76
	# Tells it where to put the header files
80e52811 sum01 2018-05-04 17:14 77
	PUBLIC_HEADER DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/sago"
d483775b sum01 2018-04-16 03:05 78
)
d483775b sum01 2018-04-16 03:05 79
d483775b sum01 2018-04-16 03:05 80
# "The install(TARGETS) and install(EXPORT) commands work together to install a target and a file to help import it"
d483775b sum01 2018-04-16 03:05 81
# Installs a cmake file which external projects can import.
c8e9ee00 sum01 2018-06-21 15:16 82
install(EXPORT "platform_foldersConfig"
80e52811 sum01 2018-05-04 17:14 83
	NAMESPACE sago::
d483775b sum01 2018-04-16 03:05 84
	DESTINATION "${_PROJECT_INSTALL_CMAKE_DIR}"
d483775b sum01 2018-04-16 03:05 85
)
d483775b sum01 2018-04-16 03:05 86
d483775b sum01 2018-04-16 03:05 87
# "The export command is used to generate a file exporting targets from a project build tree"
d483775b sum01 2018-04-16 03:05 88
# Creates an import file for external projects which are aware of the build tree.
d483775b sum01 2018-04-16 03:05 89
# May be useful for cross-compiling
80e52811 sum01 2018-05-04 17:14 90
export(TARGETS platform_folders
80e52811 sum01 2018-05-04 17:14 91
	FILE "platform_folders-exports.cmake"
d483775b sum01 2018-04-16 03:05 92
)
d483775b sum01 2018-04-16 03:05 93
80e52811 sum01 2018-05-04 17:14 94
# For the config and configversion macros
80e52811 sum01 2018-05-04 17:14 95
include(CMakePackageConfigHelpers)
80e52811 sum01 2018-05-04 17:14 96
d483775b sum01 2018-04-16 03:05 97
# Creates the project's ConfigVersion.cmake file
d483775b sum01 2018-04-16 03:05 98
# This allows for find_package() to use a version in the call
80e52811 sum01 2018-05-04 17:14 99
write_basic_package_version_file("${CMAKE_CURRENT_BINARY_DIR}/platform_foldersConfigVersion.cmake"
d483775b sum01 2018-04-16 03:05 100
	# This'll require versioning in the project() call
d483775b sum01 2018-04-16 03:05 101
	VERSION ${CMAKE_PROJECT_VERSION}
d483775b sum01 2018-04-16 03:05 102
	# Just assuming Semver is followed
d483775b sum01 2018-04-16 03:05 103
	COMPATIBILITY SameMajorVersion
d483775b sum01 2018-04-16 03:05 104
)
d483775b sum01 2018-04-16 03:05 105
d483775b sum01 2018-04-16 03:05 106
# Install the ConfigVersion file, which is located in the build dir
d483775b sum01 2018-04-16 03:05 107
install(FILES
80e52811 sum01 2018-05-04 17:14 108
		"${CMAKE_CURRENT_BINARY_DIR}/platform_foldersConfigVersion.cmake"
d483775b sum01 2018-04-16 03:05 109
	DESTINATION "${_PROJECT_INSTALL_CMAKE_DIR}"
d483775b sum01 2018-04-16 03:05 110
)
d483775b sum01 2018-04-16 03:05 111
d483775b sum01 2018-04-16 03:05 112
# A module for testing the library
d483775b sum01 2018-04-16 03:05 113
include(CTest)
d483775b sum01 2018-04-16 03:05 114
# BUILD_TESTING is defined (default ON) in CTest
d483775b sum01 2018-04-16 03:05 115
if(BUILD_TESTING)
452e64cc sum01 2018-04-26 21:25 116
	add_subdirectory(test)
513c0ebf Poul Sander 2018-06-06 17:05 117
	add_executable(platform_folders_sample platform_folders.cpp)
513c0ebf Poul Sander 2018-06-06 17:05 118
	target_link_libraries(platform_folders_sample PRIVATE platform_folders)
d483775b sum01 2018-04-16 03:05 119
endif()
1970-01-01 00:00 120