Skip to content

Commit 18ff55e

Browse files
author
f-schmitt-zih
committed
Merge pull request #216 from ax3l/topic-cleanUpWhiteSpacesCMake
CMakeList.txt: Remove Tabs and EOL Spaces
2 parents cd9fe36 + 95bb051 commit 18ff55e

2 files changed

Lines changed: 30 additions & 30 deletions

File tree

CMakeLists.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
#
22
# Copyright 2013-2015 Felix Schmitt, Axel Huebl
33
#
4-
# This file is part of libSplash.
5-
#
6-
# libSplash is free software: you can redistribute it and/or modify
7-
# it under the terms of of either the GNU General Public License or
8-
# the GNU Lesser General Public License as published by
9-
# the Free Software Foundation, either version 3 of the License, or
4+
# This file is part of libSplash.
5+
#
6+
# libSplash is free software: you can redistribute it and/or modify
7+
# it under the terms of of either the GNU General Public License or
8+
# the GNU Lesser General Public License as published by
9+
# the Free Software Foundation, either version 3 of the License, or
1010
# (at your option) any later version.
1111
#
12-
# libSplash is distributed in the hope that it will be useful,
13-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
# GNU General Public License and the GNU Lesser General Public License
16-
# for more details.
17-
#
18-
# You should have received a copy of the GNU General Public License
19-
# and the GNU Lesser General Public License along with libSplash.
12+
# libSplash is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License and the GNU Lesser General Public License
16+
# for more details.
17+
#
18+
# You should have received a copy of the GNU General Public License
19+
# and the GNU Lesser General Public License along with libSplash.
2020
# If not, see <http://www.gnu.org/licenses/>.
2121

2222
cmake_minimum_required(VERSION 2.8.5)
@@ -48,7 +48,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/ ${CMAKE_MODULE_PATH})
4848
IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
4949
SET(CMAKE_INSTALL_PREFIX "${PROJECT_BINARY_DIR}" CACHE PATH "install prefix"
5050
FORCE)
51-
ENDIF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
51+
ENDIF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
5252

5353
#-------------------------------------------------------------------------------
5454

@@ -113,7 +113,7 @@ SET(SPLASH_LIBS z ${HDF5_LIBRARIES})
113113
# serial or parallel version of libSplash
114114
SET(SPLASH_CLASSES logging DCAttribute DCDataSet DCGroup HandleMgr SerialDataCollector DomainCollector SDCHelper)
115115
IF(HDF5_IS_PARALLEL)
116-
#parallel version
116+
#parallel version
117117
MESSAGE(STATUS "Parallel HDF5 found. Building parallel version")
118118

119119
OPTION(COLLECTIVE_IO "use HDF5 collective IO" ON)
@@ -361,7 +361,7 @@ ELSE(HDF5_IS_PARALLEL)
361361
SET(CPACK_DEBIAN_PACKAGE_DEPENDS
362362
"libhdf5-serial-dev (>= 1.8.6)"
363363
)
364-
IF(TOOLS_MPI)
364+
IF(TOOLS_MPI)
365365
SET(CPACK_DEBIAN_PACKAGE_DEPENDS
366366
"${CPACK_DEBIAN_PACKAGE_DEPENDS}, lib${MPI_FLAVOR}-dev (>= ${MPI_FLAVOR_MINVERSION})"
367367
)

examples/CMakeLists.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
#
33
# This file is part of libSplash.
44
#
5-
# libSplash is free software: you can redistribute it and/or modify
6-
# it under the terms of of either the GNU General Public License or
7-
# the GNU Lesser General Public License as published by
8-
# the Free Software Foundation, either version 3 of the License, or
5+
# libSplash is free software: you can redistribute it and/or modify
6+
# it under the terms of of either the GNU General Public License or
7+
# the GNU Lesser General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
1010
#
11-
# libSplash is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License and the GNU Lesser General Public License
15-
# for more details.
11+
# libSplash is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License and the GNU Lesser General Public License
15+
# for more details.
1616
#
17-
# You should have received a copy of the GNU General Public License
18-
# and the GNU Lesser General Public License along with libSplash.
17+
# You should have received a copy of the GNU General Public License
18+
# and the GNU Lesser General Public License along with libSplash.
1919
# If not, see <http://www.gnu.org/licenses/>.
2020

2121
cmake_minimum_required(VERSION 2.8.5)
@@ -70,8 +70,8 @@ INCLUDE_DIRECTORIES("${SPLASH_ROOT_DIR}/include")
7070

7171
# link static
7272
ADD_LIBRARY(splash_static STATIC IMPORTED)
73-
SET_TARGET_PROPERTIES(splash_static PROPERTIES
74-
IMPORTED_LOCATION "${SPLASH_ROOT_DIR}/lib/libsplash.a")
73+
SET_TARGET_PROPERTIES(splash_static PROPERTIES
74+
IMPORTED_LOCATION "${SPLASH_ROOT_DIR}/lib/libsplash.a")
7575
SET(LIBS splash_static ${LIBS})
7676

7777
# link dynamic

0 commit comments

Comments
 (0)