-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
106 lines (89 loc) · 4.59 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Copyright (c) 2011-2022: G-CSC, Goethe University Frankfurt
# Copyright (c) 2022: Goethe University Frankfurt
#
# Authors: Tim Schoen, Arne Naegel
#
# This file is part of UG4.
#
# UG4 is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License version 3 (as published by the
# Free Software Foundation) with the following additional attribution
# requirements (according to LGPL/GPL v3 §7):
#
# (1) The following notice must be displayed in the Appropriate Legal Notices
# of covered and combined works: "Based on UG4 (www.ug4.org/license)".
#
# (2) The following notice must be displayed at a prominent place in the
# terminal output of covered works: "Based on UG4 (www.ug4.org/license)".
#
# (3) The following bibliography is recommended for citation and must be
# preserved in all covered files:
# "Reiter, S., Vogel, A., Heppner, I., Rupp, M., and Wittum, G. A massively
# parallel geometric multigrid solver on hierarchically distributed grids.
# Computing and visualization in science 16, 4 (2013), 151-164"
# "Vogel, A., Reiter, S., Rupp, M., Nägel, A., and Wittum, G. UG4 -- a novel
# flexible software system for simulating pde based models on high performance
# computers. Computing and visualization in science 16, 4 (2013), 165-179"
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
# Name of your plugin and sources.
set(pluginName JSONToolkit)
set(SOURCES src/json_plugin.cpp
src/parameter_set.cpp
src/json_toolkit.cpp
src/json_schema_validator.cpp
# json-schema-validator
external/json-schema-validator/src/smtp-address-validator.cpp
external/json-schema-validator/src/json-schema-draft7.json.cpp
external/json-schema-validator/src/json-uri.cpp
external/json-schema-validator/src/json-validator.cpp
external/json-schema-validator/src/json-patch.cpp
external/json-schema-validator/src/string-format-check.cpp
)
MESSAGE(STATUS "JSONToolkit:")
# Add json-schema-validator
add_subdirectory(external/json-schema-validator)
# Requires C++ 11.
set (CMAKE_CXX_STANDARD 11)
################################################################################
# The code below doesn't have to be changed (usually)
################################################################################
cmake_minimum_required(VERSION 3.12)
project(UG_PLUGIN_${pluginName} LANGUAGES CXX)
# Include the definitions and dependencies for ug-plugins.
include(${UG_ROOT_CMAKE_PATH}/ug_plugin_includes.cmake)
################################################################################
# Classic binding (static or dynamic plugin).
################################################################################
if(NOT USE_PYBIND11)
if(buildEmbeddedPlugins)
# add the sources to ug4's sources
EXPORTSOURCES(${CMAKE_CURRENT_SOURCE_DIR} ${SOURCES})
else(buildEmbeddedPlugins)
# create a shared library from the sources and link it against ug4.
add_library(${pluginName} SHARED ${SOURCES})
target_include_directories(${pluginName} PUBLIC ${UG_ROOT_PATH}/externals/JSONForUG4/json-cxx/single_include) # nlohmann-JSON
target_include_directories(${pluginName} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/external/json-schema-validator/src)
target_link_libraries (${pluginName} ug4)
endif(buildEmbeddedPlugins)
endif(NOT USE_PYBIND11)
################################################################################
# Python binding (static plugin, dynamic python interface).
################################################################################
if(USE_PYBIND11)
# Create a STATIC library for UG4 stuff from the sources
add_library(${pluginName} STATIC ${SOURCES})
target_include_directories(${pluginName} PUBLIC ${UG_ROOT_PATH}/externals/JSONForUG4/json-cxx/single_include) # nlohmann-JSON
target_include_directories(${pluginName} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/external/json-schema-validator/src)
SET(myPluginSources json_pybind.cpp)
SET(myLibraries ug4 ${pluginName})
# First argument must match module name in PYBIND11_MODULE call
python_add_library(pyjson MODULE ${myPluginSources} ${SOURCES} WITH_SOABI)
#ug4pybind_add_module(pyjson ${myPluginSources} ${myLibraries})
target_link_libraries (pyjson PRIVATE ${pluginName} ug4_s)
set_target_properties(pyjson PROPERTIES INSTALL_RPATH "$ORIGIN/..:$ORIGIN/../../../lib")
install(TARGETS pyjson LIBRARY DESTINATION ug4py COMPONENT pymodules)
endif(USE_PYBIND11)