Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Institute of Technical Acoustics (ITA)
ITACoreLibs
Commits
8adf19eb
Commit
8adf19eb
authored
Jan 20, 2017
by
Jonas Stienen
Browse files
Adding MSVC include for VistaCoreLibs Projects (configurable with CMake, default off)
parent
4c01e9b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
8adf19eb
...
...
@@ -11,7 +11,6 @@ list( APPEND CMAKE_MODULE_PATH "$ENV{VISTA_CMAKE_COMMON}" )
include
(
VistaCommon
)
# Some global settings for static/shared library generation
if
(
NOT DEFINED ITA_VISTA_BUILD_STATIC
)
set
(
ITA_VISTA_BUILD_STATIC OFF CACHE BOOL
"Build against static ViSTA libraries"
)
...
...
@@ -37,7 +36,6 @@ if( MSVC )
add_definitions
(
"/wd4251 /W4 -D_CRT_SECURE_NO_WARNINGS"
)
endif
()
# ITACoreLibs submodules
set
(
ITA_CORE_LIBS_COMMON_BUILD TRUE
)
add_subdirectory
(
ITABase
)
...
...
@@ -47,3 +45,12 @@ add_subdirectory( ITADataSources )
add_subdirectory
(
ITAConvolution
)
add_subdirectory
(
ITACTC
)
add_subdirectory
(
ITASampler
)
if
(
MSVC
)
set
(
ITA_CORE_LIBS_INCLUDE_EXTERNAL_MSVC_PROJECTS OFF CACHE BOOL
"If enabled, msvc projects of external vista packages will be included in the solution"
)
if
(
ITA_CORE_LIBS_INCLUDE_EXTERNAL_MSVC_PROJECTS
)
vista_use_package
(
VistaCoreLibs
)
vista_add_external_msvc_project_of_package
(
VistaCoreLibs
"VistaCoreLibs"
DEPENDENT ITABase DEPENDS VistaBase VistaInterProcComm VistaTools
)
message
(
"hi"
)
endif
(
)
endif
(
)
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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