-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCMakeLists.txt
38 lines (33 loc) · 1.3 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
#
# Copyright (C) 2018 CS - Systemes d'Information (CS-SI)
#
# This file is part of OTB-SIRIUS
#
# https://github.com/CS-SI/OTB-SIRIUS
#
# OTB-SIRIUS is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OTB-SIRIUS 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OTB-SIRIUS. If not, see <https://www.gnu.org/licenses/>.
#
otb_module_test()
set(${otb-module}_Tests
otbFrequencyResampleTestDriver.cxx
otbFrequencyResampleTest.cxx
)
add_executable(otbFrequencyResampleTestDriver ${${otb-module}_Tests})
target_link_libraries(otbFrequencyResampleTestDriver
${${otb-module}-Test_LIBRARIES}
${SIRIUS_LIBRARIES})
target_include_directories(otbFrequencyResampleTestDriver PUBLIC ${SIRIUS_INCLUDE_DIRS})
otb_module_target_label(otbFrequencyResampleTestDriver)
otb_add_test(NAME TestFrequencyResample
COMMAND otbFrequencyResampleTestDriver FrequencyResampleNew)