Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
solverstack
vite
Commits
c81031c7
Commit
c81031c7
authored
15 years ago
by
Johnny Jazeix
Browse files
Options
Downloads
Patches
Plain Diff
tag of 1.1 is r1005 and not r999
parent
d5c6b9a5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
configure
+49
-7
49 additions, 7 deletions
configure
src/common/common.hpp
+2
-2
2 additions, 2 deletions
src/common/common.hpp
src/src.pro
+1
-1
1 addition, 1 deletion
src/src.pro
with
52 additions
and
10 deletions
configure
+
49
−
7
View file @
c81031c7
...
...
@@ -49,17 +49,38 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
makefile="Makefile"
with_otf=0
config_specified=0
# where will we concatenate options like macros, libs...
compilation_src_pro="src.pro"
# For qmake
config="\"CONFIG+="
defines="\"DEFINES+="
libs="\"LIBS+="
includes="\"INCLUDES+="
sources="\"SOURCES+="
headers="\"HEADERS+="
echo ""
echo "-------------------------------"
echo "-------------------------------"
echo ""
echo " Visual Trace Explorer"
echo " - configuration -"
echo ""
echo ""
echo " type './configure -h' for help "
echo ""
echo ""
echo " Default mode is:"
echo " * RELEASE mode"
echo ""
echo "-------------------------------"
echo "-------------------------------"
echo ""
echo ""
usage()
{
echo "ViTE configuration shell-script"
...
...
@@ -67,11 +88,20 @@ usage()
echo " ./configure [ options ]"
echo
echo "Options:"
echo " --help"
echo " -h print this page"
echo
echo " --enable_spinning_logo makes the rabbit to turn when no trace is loaded"
echo " --enable_otf enables the otf support. The otf release used by default is in the src/general directory"
echo " -h, --help"
echo " print this page"
echo ""
echo " --release"
echo " compiles in release mode (by default)"
echo ""
echo " --debug"
echo " compiles in debug mode"
echo ""
echo " --enable_spinning_logo"
echo " makes the rabbit to turn when no trace is loaded"
echo ""
echo " --enable_otf"
echo " enables the otf support. The otf release used by default is in the src/general directory"
## Will be added later
# echo " --otf_include_dir=<path> set the otf directory path"
# echo " --otf_library_dir=<path> set the otf library path (<path>/libotf.a)"
...
...
@@ -98,22 +128,34 @@ while [ 0 -lt $# ]; do
--enable_spinning_logo) # good openGL spinning rabbit :)
defines="$defines SPINNING_LOGO"
;;
--release)
config_specified=1;
config="$config release"
;;
--debug)
config_specified=1;
config="$config debug"
;;
*)
echo "invalid option : $OPT";
exit 0;
esac
done
#end the qmake options
if [ $config_specified == 1 ]; then
config="$config\"";
else
config="$config release\"";
fi
defines="$defines\"";
libs="$libs\"";
includes="$includes\"";
sources="$sources\"";
headers="$headers\"";
compilation_src_pro="$defines $libs $includes $sources $headers";
compilation_src_pro="$defines
$config
$libs $includes $sources $headers";
# find a make command
if [ -z "$MAKE" ]; then
...
...
This diff is collapsed.
Click to expand it.
src/common/common.hpp
+
2
−
2
View file @
c81031c7
...
...
@@ -71,12 +71,12 @@
* \def VITE_VERSION
* \brief the ViTE version (string)
*/
#define VITE_VERSION "1.1
-alpha1
"
#define VITE_VERSION "1.1"
/*!
* \def VITE_DATE
* \brief the ViTE release date (string)
*/
#define VITE_DATE "
December
200
9
"
#define VITE_DATE "
January
20
1
0"
/*!
* \def VITE_WEBSITE
* \brief the ViTE website (string)
...
...
This diff is collapsed.
Click to expand it.
src/src.pro
+
1
−
1
View file @
c81031c7
...
...
@@ -46,7 +46,7 @@
#
RESOURCES
=
vite
.
qrc
OBJECTS_DIR
=../
bin
DESTDIR
=../
bin
CONFIG
+=
uitools
debug
CONFIG
+=
uitools
QT
+=
opengl
TEMPLATE
=
app
TARGET
=
vite
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment