Skip to content

Commit dec5efd

Browse files
committed
CMake: Strip trailing spaces
Small formatting fix to remove trailing spaces Signed-off-by: Devin Nakamura <devinn@ca.ibm.com>
1 parent 26bf39b commit dec5efd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+346
-358
lines changed

CMakeLists.txt

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
###############################################################################
22
# Copyright (c) 2017, 2017 IBM Corp. and others
3-
#
3+
#
44
# This program and the accompanying materials are made available under
55
# the terms of the Eclipse Public License 2.0 which accompanies this
66
# distribution and is available at https://www.eclipse.org/legal/epl-2.0/
77
# or the Apache License, Version 2.0 which accompanies this distribution and
88
# is available at https://www.apache.org/licenses/LICENSE-2.0.
9-
#
9+
#
1010
# This Source Code may also be made available under the following
1111
# Secondary Licenses when the conditions for such availability set
1212
# forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
1313
# General Public License, version 2 with the GNU Classpath
1414
# Exception [1] and GNU General Public License, version 2 with the
1515
# OpenJDK Assembly Exception [2].
16-
#
16+
#
1717
# [1] https://www.gnu.org/software/classpath/license.html
1818
# [2] http://openjdk.java.net/legal/assembly-exception.html
19-
#
19+
#
2020
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
2121
###############################################################################
2222

@@ -29,7 +29,7 @@ message(WARNING
2929
"CMake support is currently experimental.\n\
3030
Various components may fail to compile with default configuration options, and some are not even attempted.")
3131

32-
include(cmake/versions.cmake) # Required for OMR_VERSION
32+
include(cmake/versions.cmake) # Required for OMR_VERSION
3333

3434
project(omr VERSION ${OMR_VERSION} LANGUAGES CXX C)
3535
set(OMR_ROOT ${CMAKE_CURRENT_LIST_DIR} CACHE INTERNAL "Root of OMR")
@@ -77,7 +77,7 @@ set(OMR_RAS_GLUE_TARGET "omr_example_ras_glue" CACHE STRING "The ras glue target
7777
set(OMR_CORE_GLUE_TARGET "omr_example_core_glue" CACHE STRING "The core glue target, must be and interface library")
7878

7979
# TODO should we always be adding this? Likely only when compiling OMR proper for testing. Otherwise we would want
80-
# to add the languages glue folder
80+
# to add the languages glue folder
8181
add_subdirectory(example/glue)
8282

8383
# TODO: OMR_EXAMPLE flag
@@ -147,10 +147,8 @@ if(OMR_JITBUILDER)
147147
add_subdirectory(jitbuilder)
148148
endif(OMR_JITBUILDER)
149149

150-
# This should come last to ensure dependencies
150+
# This should come last to ensure dependencies
151151
# are defined
152152
if(OMR_FVTEST)
153153
add_subdirectory(fvtest)
154154
endif()
155-
156-

cmake/modules/FindDiaSDK.cmake

-1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,3 @@ if(DIASDK_FOUND)
5353
set(DIASDK_INCLUDE_DIRS ${DIA2_H_DIR})
5454
set(DIASDK_LIBRARIES ${DIAGUIDS_LIBRARY})
5555
endif(DIASDK_FOUND)
56-

cmake/modules/FindLibElf.cmake

-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,3 @@ if(LIBELF_FOUND)
5151
)
5252
set (LIBELF_DEFINITIONS "")
5353
endif(LIBELF_FOUND)
54-

0 commit comments

Comments
 (0)