aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sol2/cmake/Modules/FindCatch.cmake
blob: 527fb6c1b439de0168e7119707a64629b6e27a9b (plain)
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
76
77
78
79
80
81
82
83
84
# # # # sol3
# The MIT License (MIT)
#
# Copyright (c) 2013-2019 Rapptz, ThePhD, and contributors
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

include(ExternalProject)
include(FindPackageHandleStandardArgs)
include(Common/Core)

# # Base variables
if (Catch_FIND_VERSION)
	set(catch_version ${Catch_FIND_VERSION})
else()
	set(catch_version 2.1.2)
endif()

set(catch_lib catch_lib_${catch_version})

# # Useful locations
set(catch_build_toplevel "${CMAKE_BINARY_DIR}/vendor/catch_${catch_version}")
set(catch_include_dirs "${catch_build_toplevel}")

# # catch library sources
set(catch_sources catch.hpp)
prepend(catch_sources "${catch_build_toplevel}/" ${catch_sources})

# # !! CMake 3.5 does not have DOWNLOAD_NO_EXTRACT e.e
# # Now I know why people don't like CMake that much: the earlier versions were kind of garbage
# # External project to get sources
#ExternalProject_Add(CATCH_BUILD_SOURCE
#	BUILD_IN_SOURCE TRUE
#	BUILD_ALWAYS FALSE
#	DOWNLOAD_NO_EXTRACT TRUE
#	URL https://github.com/catchorg/Catch2/releases/download/v${catch_version}/catch.hpp
#	TLS_VERIFY TRUE
#	PREFIX ${catch_build_toplevel}
#	SOURCE_DIR ${catch_build_toplevel}
#	DOWNLOAD_DIR ${catch_build_toplevel}
#	TMP_DIR "${catch_build_toplevel}-tmp"
#	STAMP_DIR "${catch_build_toplevel}-stamp"
#	INSTALL_DIR "${catch_build_toplevel}/local"
#	CONFIGURE_COMMAND ""
#	BUILD_COMMAND ""
#	INSTALL_COMMAND ""
#	TEST_COMMAND ""
#	BUILD_BYPRODUCTS "${catch_sources}")

file(MAKE_DIRECTORY "${catch_build_toplevel}")
file(DOWNLOAD https://github.com/catchorg/Catch2/releases/download/v${catch_version}/catch.hpp ${catch_sources})

add_library(${catch_lib} INTERFACE)
# add_dependencies(${catch_lib} CATCH_BUILD_SOURCE)
target_include_directories(${catch_lib} INTERFACE ${catch_include_dirs})

if (MSVC)
	target_compile_definitions(${catch_lib} INTERFACE
		_SILENCE_CXX17_UNCAUGHT_EXCEPTION_DEPRECATION_WARNING)
endif()

set(CATCH_FOUND TRUE)
set(CATCH_LIBRARIES ${catch_lib})
set(CATCH_INCLUDE_DIRS ${catch_include_dirs})

FIND_PACKAGE_HANDLE_STANDARD_ARGS(Catch
	FOUND_VAR CATCH_FOUND
	REQUIRED_VARS CATCH_LIBRARIES CATCH_INCLUDE_DIRS
	VERSION_VAR catch_version)