This repository was archived by the owner on Jul 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMake.in.cmake
More file actions
49 lines (37 loc) · 1.9 KB
/
Copy pathCMake.in.cmake
File metadata and controls
49 lines (37 loc) · 1.9 KB
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
#
# CMake environment variable for PyOpenFLUID
#
# Author : Bastien VAYSSE <bastien.vaysse@supagro.inra.fr>
#
# ------ GENERAL ------ #
SET(OUTPUT_PATH "${CMAKE_BINARY_DIR}") # build folder
SET(CURRENT_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
SET(PYOPENFLUID_MAIN_NAME "pyopenfluid")
SET(PYOPENFLUID_DISPLAY_NAME "PyOpenFLUID")
SET(PYOPENFLUID_VERSION "${OpenFLUID_VERSION}")
SET(PYOPENFLUID_LICENCE "GPLv3")
SET(PYOPENFLUID_SHORT_DESCRIPTION "This module allows to load, parameterize, run and analyse OpenFLUID simulations within the Python 2.x environment.")
SET(PYOPENFLUID_LONG_DESCRIPTION "This module allows to load, parameterize, run and analyse OpenFLUID simulations within the Python 2.x environment.")
SET(PYOPENFLUID_AUTHORS_LIST "Bastien VAYSSE")
SET(PYOPENFLUID_EMAIL_LIST "bastien.vaysse@supagro.inra.fr;fabrejc@supagro.inra.fr") # separated by comma ";"
SET(PYOPENFLUID_MAINTAINER "Fabre Jean-Christophe")
SET(PYOPENFLUID_EMAIL_MAINTAINER "fabrejc@supagro.inra.fr")
SET(PYOPENFLUID_URL "http://www.openfluid-project.org/openfluid/community/index.php/Main_Page")
# ------ DIRECTORIES ------ #
# "PYOPENFLUID_INPUT_<S>" -> input files
# "<S>_PATH" -> for built and installed repository (relative path)
# "<S>_OUTPUT_PATH" -> for the built repository (absolute path)
SET(PYOPENFLUID_INPUT_RESSOURCE "${CURRENT_PATH}/ressource")
SET(PYOPENFLUID_INPUT_MODULE "${CURRENT_PATH}/module")
SET(PYOPENFLUID_INPUT_SOURCE "${CURRENT_PATH}/src")
SET(PYOPENFLUID_INPUT_DOC "${CURRENT_PATH}/doc")
SET(PYTHON_MODULE_PATH "pythonsetup")
SET(PYTHON_MODULE_SRC_PATH "${PYTHON_MODULE_PATH}/src")
SET(DOC_PATH "share/doc")
SET(TESTS_OUTPUTS_PATH "tests-outputs")
# ------ PREFIXS ------ #
SET(BUILD_PREFIX "dist")
SET(BUILD_PATH "${OUTPUT_PATH}/${BUILD_PREFIX}") # _build/dist
# ------ TESTS FILES ------ #
SET(OPENFLUID_TESTS_PROJECT_1
"${OpenFLUID_HOME_DIR}/share/doc/openfluid/examples/projects/Primitives")