Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
generators
EMAM2Cpp
Commits
a7623b9b
Commit
a7623b9b
authored
Jul 23, 2018
by
Christoph Richter
Browse files
Fixed bug in CMake template
parent
9eb8b761
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/resources/template/cmake/CMakeFindPackageTemplate.ftl
View file @
a7623b9b
...
@@ -13,7 +13,7 @@ find_path(${viewModel.packageName}_INCLUDE_DIR
...
@@ -13,7 +13,7 @@ find_path(${viewModel.packageName}_INCLUDE_DIR
PATH_SUFFIXES "include"
PATH_SUFFIXES "include"
PATHS
PATHS
<#list viewModel.includePaths as var>
<#list viewModel.includePaths as var>
\"
$
{
var
}
\
"
"
$
{
var
}
"
</#list>
</#list>
)
)
</#
if
>
</#
if
>
...
@@ -23,7 +23,7 @@ find_library(${viewModel.packageName}_LIBRARY
...
@@ -23,7 +23,7 @@ find_library(${viewModel.packageName}_LIBRARY
PATH_SUFFIXES "lib" "lib64" "lib/x86_64-linux-gnu" "examples/lib_win64" "build"
PATH_SUFFIXES "lib" "lib64" "lib/x86_64-linux-gnu" "examples/lib_win64" "build"
PATHS
PATHS
<#list viewModel.libPaths as var>
<#list viewModel.libPaths as var>
\"
$
{
var
}
\
"
"
$
{
var
}
"
</#list>
</#list>
)
)
</#
if
>
</#
if
>
...
...
Write
Preview
Supports
Markdown
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