-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
114 lines (98 loc) · 5.12 KB
/
CMakeLists.txt
File metadata and controls
114 lines (98 loc) · 5.12 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
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
105
106
107
108
109
110
111
112
113
114
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is FieldML
#
# The Initial Developer of the Original Code is
# Auckland Uniservices Ltd, Auckland, New Zealand.
# Portions created by the Initial Developer are Copyright (C) 2005
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK ***** */
SET( CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX} )
FIND_PACKAGE( ZLIB QUIET )
SET( TEST_EXE_SRCS src/fieldml_test.cpp )
SET( TEST_EXE_TARGET_NAME fieldml_test )
IF ( HDF5_USE_MPI )
SET( TEST_PHDF5_EXE_SRCS src/fieldml_phdf5_test.cpp )
SET( TEST_PHDF5_EXE_TARGET_NAME fieldml_phdf5_test )
ENDIF (HDF5_USE_MPI)
SET( SIMPLE_TEST_SRCS src/SimpleTest.cpp )
SET( SIMPLE_TEST_HDRS src )
SET( TEST_ARRAY_READING_EXE_SRCS src/FieldmlTestArrayReading.cpp )
SET( TEST_ARRAY_READING_EXE_TARGET_NAME fieldml_test_array_reading )
SET( TEST_CREATE_EXE_SRCS src/FieldmlTestCreate.cpp )
SET( TEST_CREATE_EXE_TARGET_NAME fieldml_test_create )
SET( FIELDML_API_PUBLIC_HDRS ../core/src )
SET( FIELDML_IO_API_PUBLIC_HDRS ../io/src )
SET( INPUT_RESOURCES input/I16BE.h5 )
SET( OUTPUT_RESOURCES output/visualisation.cmiss )
IF( ${UPPERCASE_LIBRARY_TARGET_NAME}_BUILD_TEST )
OPTION_WITH_DEFAULT( BUILD_TEST_WITH_SZLIB "Build test application with SZLIB" FALSE )
IF( BUILD_TEST_WITH_SZLIB )
FIND_PATH(SZIP_INCLUDE_DIR szlib.h
NO_DEFAULT_PATH
)
FIND_LIBRARY(SZIP_LIBRARY NAMES szip
NO_DEFAULT_PATH
)
SET( SZIP_INCLUDE_DIR ${SZIP_INCLUDE_DIR} )
SET( SZIP_LIBRARY ${SZIP_LIBRARY} )
ENDIF( BUILD_TEST_WITH_SZLIB )
INCLUDE_DIRECTORIES( ${FIELDML_API_PUBLIC_HDRS} ${FIELDML_IO_API_PUBLIC_HDRS} ${SIMPLE_TEST_HDRS} ${MPI_INCLUDE_DIRS} )
ADD_EXECUTABLE( ${TEST_EXE_TARGET_NAME} ${TEST_EXE_SRCS} )
IF ( HDF5_USE_MPI )
ADD_EXECUTABLE( ${TEST_PHDF5_EXE_TARGET_NAME} ${TEST_PHDF5_EXE_SRCS} )
ENDIF ( HDF5_USE_MPI )
IF( WIN32 )
ADD_EXECUTABLE( ${TEST_ARRAY_READING_EXE_TARGET_NAME} ${SIMPLE_TEST_SRCS} ${TEST_ARRAY_READING_EXE_SRCS} )
ADD_EXECUTABLE( ${TEST_CREATE_EXE_TARGET_NAME} ${SIMPLE_TEST_SRCS} ${TEST_CREATE_EXE_SRCS} )
ELSE( WIN32 )
ADD_EXECUTABLE( ${TEST_ARRAY_READING_EXE_TARGET_NAME} ${TEST_ARRAY_READING_EXE_SRCS} ${SIMPLE_TEST_SRCS} )
ADD_EXECUTABLE( ${TEST_CREATE_EXE_TARGET_NAME} ${TEST_CREATE_EXE_SRCS} ${SIMPLE_TEST_SRCS} )
ENDIF( WIN32 )
TARGET_LINK_LIBRARIES( ${TEST_EXE_TARGET_NAME} ${FIELDML_API_LIBRARY_TARGET_NAME} ${FIELDML_IO_API_LIBRARY_TARGET_NAME} ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES} ${HDF5_LIBRARY} ${SZIP_LIBRARY} )
IF ( HDF5_USE_MPI )
TARGET_LINK_LIBRARIES( ${TEST_PHDF5_EXE_TARGET_NAME} ${FIELDML_API_LIBRARY_TARGET_NAME} ${FIELDML_IO_API_LIBRARY_TARGET_NAME} ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES} ${HDF5_LIBRARY} ${SZIP_LIBRARY} )
ENDIF ( HDF5_USE_MPI )
TARGET_LINK_LIBRARIES( ${TEST_ARRAY_READING_EXE_TARGET_NAME} ${FIELDML_API_LIBRARY_TARGET_NAME} ${FIELDML_IO_API_LIBRARY_TARGET_NAME} ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES} ${HDF5_LIBRARY} ${SZIP_LIBRARY} )
TARGET_LINK_LIBRARIES( ${TEST_CREATE_EXE_TARGET_NAME} ${FIELDML_API_LIBRARY_TARGET_NAME} ${FIELDML_IO_API_LIBRARY_TARGET_NAME} ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES} ${HDF5_LIBRARY} ${SZIP_LIBRARY} )
INSTALL( TARGETS ${TEST_EXE_TARGET_NAME} EXPORT fieldml-targets
${LIBRARY_INSTALL_TYPE}
DESTINATION test )
IF ( HDF5_USE_MPI )
INSTALL( TARGETS ${TEST_PHDF5_EXE_TARGET_NAME} EXPORT fieldml-targets
${LIBRARY_INSTALL_TYPE}
DESTINATION test )
ENDIF ( HDF5_USE_MPI )
INSTALL( TARGETS ${TEST_ARRAY_READING_EXE_TARGET_NAME} EXPORT fieldml-targets ${LIBRARY_INSTALL_TYPE}
DESTINATION test )
INSTALL( TARGETS ${TEST_CREATE_EXE_TARGET_NAME} EXPORT fieldml-targets ${LIBRARY_INSTALL_TYPE}
DESTINATION test )
INSTALL( FILES ${INPUT_RESOURCES} DESTINATION test/input )
INSTALL( FILES ${OUTPUT_RESOURCES} DESTINATION test/output )
ENDIF( ${UPPERCASE_LIBRARY_TARGET_NAME}_BUILD_TEST )