Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Institute of Technical Acoustics (ITA)
ITAAcousticVisualization
Commits
510a914c
Commit
510a914c
authored
Nov 21, 2016
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding submodules, readme and cmake lists
parents
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
50 additions
and
0 deletions
+50
-0
.gitmodules
.gitmodules
+3
-0
CMakeLists.txt
CMakeLists.txt
+35
-0
ITAQtWidgets
ITAQtWidgets
+1
-0
README.md
README.md
+11
-0
No files found.
.gitmodules
0 → 100644
View file @
510a914c
[submodule "ITAQtWidgets"]
path = ITAQtWidgets
url = https://git.rwth-aachen.de/ita/ITAQtWidgets.git
CMakeLists.txt
0 → 100644
View file @
510a914c
cmake_minimum_required
(
VERSION 2.8
)
project
(
ITAAcousticVisualization
)
# example how to set ExternalLibs folder for an entire project (without ENV var)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../VistaCMakeCommon"
)
# ... or with ENV variable
list
(
APPEND CMAKE_MODULE_PATH
"$ENV{VISTA_CMAKE_COMMON}"
)
include
(
VistaCommon
)
set
(
ITA_ACOUSTIC_VISUALIZATION_COMMON_BUILD TRUE
)
# Some global settings for static/shared library generation
if
(
NOT DEFINED ITA_ACOUSTIC_VISUALIZATION_BUILD_STATIC
)
set
(
ITA_ACOUSTIC_VISUALIZATION_BUILD_STATIC OFF CACHE BOOL
"Build all ITA acoustic visualization libs in static mode"
)
endif
(
NOT DEFINED ITA_ACOUSTIC_VISUALIZATION_BUILD_STATIC
)
if
(
NOT DEFINED ITA_VISTA_BUILD_STATIC
)
set
(
ITA_VISTA_BUILD_STATIC OFF CACHE BOOL
"Build against static ViSTA libraries"
)
endif
(
NOT DEFINED ITA_VISTA_BUILD_STATIC
)
# Compiler
if
(
MSVC
)
add_definitions
(
"/wd4251 /W4 -D_CRT_SECURE_NO_WARNINGS"
)
endif
()
# ITACoreLibs submodules
add_subdirectory
(
ITAQtWidgets
)
#add_subdirectory( ITAFox )
#add_subdirectory( ITAVTK )
ITAQtWidgets
@
327fa89f
Subproject commit 327fa89f55049a135c89c0b2617ab771779d4df4
README.md
0 → 100644
View file @
510a914c
## ITAAcousticVisualization
ITAAcousticVisualization is a collection of C++ library to visualize acoustic phenomena and build graphical user interfaces for virtual acoustics.
### License
This projects does not include any source code. See license file of the corresponding submodules.
### Quick build guide
Follow instructions from Wiki pages of
[
ITABase
](
https://git.rwth-aachen.de/ita/ITABase/wikis/home
)
project.
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