Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
third-party
moab
Commits
4ceb7d80
Commit
4ceb7d80
authored
Dec 19, 2016
by
vijaysm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some CMake warnings about quoted variables
parent
c818d532
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
config/TestBigEndian.cmake
config/TestBigEndian.cmake
+2
-2
No files found.
config/TestBigEndian.cmake
View file @
4ceb7d80
...
...
@@ -5,7 +5,7 @@
#
MACRO
(
TEST_BIG_ENDIAN VARIABLE
)
IF
(
"
HAVE_
${
VARIABLE
}
"
MATCHES
"
^HAVE_
${
VARIABLE
}
$
"
)
IF
(
HAVE_
${
VARIABLE
}
MATCHES ^HAVE_
${
VARIABLE
}
$
)
MESSAGE
(
STATUS
"Check if the system is big endian"
)
MESSAGE
(
STATUS
"Searching 16 bit integer"
)
...
...
@@ -93,6 +93,6 @@ MACRO(TEST_BIG_ENDIAN VARIABLE)
"Determining if the system is big endian failed with the following output:
\n
${
OUTPUT
}
\n
TestEndianess.c:
\n
${
TEST_ENDIANESS_FILE_CONTENT
}
\n\n
"
)
SET
(
${
VARIABLE
}
)
ENDIF
(
HAVE_
${
VARIABLE
}
)
ENDIF
(
"
HAVE_
${
VARIABLE
}
"
MATCHES
"
^HAVE_
${
VARIABLE
}
$
"
)
ENDIF
(
HAVE_
${
VARIABLE
}
MATCHES ^HAVE_
${
VARIABLE
}
$
)
ENDMACRO
(
TEST_BIG_ENDIAN
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment