Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CamiTK
CamiTK Community Edition
Commits
019a6428
Commit
019a6428
authored
May 25, 2018
by
atacheau
Committed by
Emmanuel Promayon
Jun 04, 2018
Browse files
BUG
#48
: Add '.lib' to 'optimized ' in cmake files
parent
a90aec4f
Changes
3
Hide whitespace changes
Inline
Side-by-side
sdk/cmake/modules/macros/camitk/CamiTKApplication.cmake
View file @
019a6428
...
...
@@ -278,7 +278,7 @@ macro(camitk_application)
if
(
MSVC
)
# TODO We have to decide how to handle debug version of external libraries
set
(
EXTERNAL_LIBRARIES
${
EXTERNAL_LIBRARIES
}
debug
${
EXTERNAL_LIBRARY
}${
CAMITK_DEBUG_POSTFIX
}
.lib
optimized
${
EXTERNAL_LIBRARY
}
optimized
${
EXTERNAL_LIBRARY
}
.lib
)
else
()
set
(
EXTERNAL_LIBRARIES
${
EXTERNAL_LIBRARIES
}
${
EXTERNAL_LIBRARY
}
)
...
...
sdk/cmake/modules/macros/camitk/CamiTKExtension.cmake
View file @
019a6428
...
...
@@ -379,7 +379,7 @@ macro(camitk_extension)
if
(
MSVC
)
list
(
APPEND EXTERNAL_LIBRARIES
${
EXTERNAL_LIBRARIES
}
debug
${
EXTERNAL_LIBRARY
}${
CAMITK_DEBUG_POSTFIX
}
.lib
optimized
${
EXTERNAL_LIBRARY
}
optimized
${
EXTERNAL_LIBRARY
}
.lib
)
else
()
list
(
APPEND EXTERNAL_LIBRARIES
${
EXTERNAL_LIBRARY
}
)
...
...
sdk/cmake/modules/macros/camitk/CamiTKLibrary.cmake
View file @
019a6428
...
...
@@ -277,7 +277,7 @@ macro(camitk_library)
if
(
MSVC
)
set
(
LINKER_EXTERNAL_LIBRARIES
${
LINKER_EXTERNAL_LIBRARIES
}
debug
${
EXTERNAL_LIBRARY
}${
CAMITK_DEBUG_POSTFIX
}
.lib
optimized
${
EXTERNAL_LIBRARY
}
optimized
${
EXTERNAL_LIBRARY
}
.lib
)
message
(
STATUS
"LINKER_EXTERNAL_LIBRARIES =
${
LINKER_EXTERNAL_LIBRARIES
}
"
)
else
()
...
...
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