Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
CMake
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2,689
Issues
2,689
List
Boards
Labels
Milestones
Merge Requests
24
Merge Requests
24
Packages
Packages
Container Registry
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
CMake
CMake
Commits
e49c9eec
Commit
e49c9eec
authored
Aug 03, 2017
by
Ben Boeckel
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmGeneratorExpressionNode: add some missing commas
parent
a2bc632d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
15 deletions
+15
-15
Source/cmGeneratorExpressionNode.cxx
Source/cmGeneratorExpressionNode.cxx
+1
-1
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_custom_command-stderr.txt
...Expression/COMPILE_LANGUAGE-add_custom_command-stderr.txt
+2
-2
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_custom_target-stderr.txt
...rExpression/COMPILE_LANGUAGE-add_custom_target-stderr.txt
+2
-2
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_executable-stderr.txt
...atorExpression/COMPILE_LANGUAGE-add_executable-stderr.txt
+2
-2
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_library-stderr.txt
...neratorExpression/COMPILE_LANGUAGE-add_library-stderr.txt
+2
-2
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_test-stderr.txt
.../GeneratorExpression/COMPILE_LANGUAGE-add_test-stderr.txt
+2
-2
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-install-stderr.txt
...e/GeneratorExpression/COMPILE_LANGUAGE-install-stderr.txt
+2
-2
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-target_sources-stderr.txt
...atorExpression/COMPILE_LANGUAGE-target_sources-stderr.txt
+2
-2
No files found.
Source/cmGeneratorExpressionNode.cxx
View file @
e49c9eec
...
...
@@ -813,7 +813,7 @@ static const struct CompileLanguageNode : public cmGeneratorExpressionNode
reportError
(
context
,
content
->
GetOriginalExpression
(),
"$<COMPILE_LANGUAGE:...> may only be used to specify include "
"directories
compile definitions, compile options
and to evaluate "
"directories
, compile definitions, compile options,
and to evaluate "
"components of the file(GENERATE) command."
);
return
std
::
string
();
}
...
...
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_custom_command-stderr.txt
View file @
e49c9eec
...
...
@@ -3,8 +3,8 @@ CMake Error at COMPILE_LANGUAGE-add_custom_command.cmake:6 \(add_custom_command\
\$<COMPILE_LANGUAGE>
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
compile definitions, compile options and to evaluate components of the
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
,
compile definitions, compile options
,
and to evaluate components of the
file\(GENERATE\) command.
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_custom_target-stderr.txt
View file @
e49c9eec
...
...
@@ -3,8 +3,8 @@ CMake Error at COMPILE_LANGUAGE-add_custom_target.cmake:4 \(add_custom_target\):
\$<COMPILE_LANGUAGE>
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
compile definitions, compile options and to evaluate components of the
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
,
compile definitions, compile options
,
and to evaluate components of the
file\(GENERATE\) command.
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_executable-stderr.txt
View file @
e49c9eec
...
...
@@ -3,8 +3,8 @@ CMake Error at COMPILE_LANGUAGE-add_executable.cmake:4 \(add_executable\):
\$<COMPILE_LANGUAGE>
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
compile definitions, compile options and to evaluate components of the
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
,
compile definitions, compile options
,
and to evaluate components of the
file\(GENERATE\) command.
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_library-stderr.txt
View file @
e49c9eec
...
...
@@ -3,8 +3,8 @@ CMake Error at COMPILE_LANGUAGE-add_library.cmake:4 \(add_library\):
\$<COMPILE_LANGUAGE>
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
compile definitions, compile options and to evaluate components of the
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
,
compile definitions, compile options
,
and to evaluate components of the
file\(GENERATE\) command.
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-add_test-stderr.txt
View file @
e49c9eec
...
...
@@ -3,8 +3,8 @@ CMake Error at COMPILE_LANGUAGE-add_test.cmake:5 \(add_test\):
\$<COMPILE_LANGUAGE>
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
compile definitions, compile options and to evaluate components of the
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
,
compile definitions, compile options
,
and to evaluate components of the
file\(GENERATE\) command.
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-install-stderr.txt
View file @
e49c9eec
...
...
@@ -3,6 +3,6 @@ CMake Error:
\$<COMPILE_LANGUAGE>
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
compile definitions, compile options and to evaluate components of the
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
,
compile definitions, compile options
,
and to evaluate components of the
file\(GENERATE\) command.
Tests/RunCMake/GeneratorExpression/COMPILE_LANGUAGE-target_sources-stderr.txt
View file @
e49c9eec
...
...
@@ -3,8 +3,8 @@ CMake Error at COMPILE_LANGUAGE-target_sources.cmake:5 \(target_sources\):
\$<COMPILE_LANGUAGE>
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
compile definitions, compile options and to evaluate components of the
\$<COMPILE_LANGUAGE:...> may only be used to specify include directories
,
compile definitions, compile options
,
and to evaluate components of the
file\(GENERATE\) command.
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)
Brad King
@brad.king
mentioned in commit
51f08783
·
Aug 04, 2017
mentioned in commit
51f08783
mentioned in commit 51f08783c2982c55c86b0d2d04bfbbf81bfbc815
Toggle commit list
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