Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TTool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mbe-tools
TTool
Commits
48c59d20
Commit
48c59d20
authored
7 years ago
by
Fabien Tessier
Browse files
Options
Downloads
Patches
Plain Diff
Add UPPAAL path for .ttool project in SpecConfigTTool
parent
831f9241
No related branches found
No related tags found
2 merge requests
!30
Merge project manager into master
,
!29
Resolve "Implement Project Management in TTool"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/common/SpecConfigTTool.java
+6
-0
6 additions, 0 deletions
src/main/java/common/SpecConfigTTool.java
with
6 additions
and
0 deletions
src/main/java/common/SpecConfigTTool.java
+
6
−
0
View file @
48c59d20
...
...
@@ -52,6 +52,8 @@ public class SpecConfigTTool {
public
static
String
GGraphPath
=
""
;
public
static
String
TGraphPath
=
""
;
public
static
String
UPPAALCodeDirectory
=
""
;
private
static
String
ProjectSystemCCodeDirectory
=
"/c++_code/"
;
private
static
String
ProjectCCodeDirectory
=
"/c_code/"
;
private
static
String
ProjectProVerifCodeDirectory
=
"/proverif/"
;
...
...
@@ -62,6 +64,7 @@ public class SpecConfigTTool {
private
static
String
ProjectDocGenDirectory
=
"/doc"
;
private
static
String
ProjectGGraphPath
=
"/graphs"
;
private
static
String
ProjectTGraphPath
=
"/graphs"
;
private
static
String
ProjectUPPAALCodeDirectory
=
"/uppaal/"
;
public
static
int
lastPanel
=
-
1
;
public
static
int
lastTab
=
-
1
;
...
...
@@ -94,6 +97,8 @@ public class SpecConfigTTool {
GGraphPath
=
ConfigurationTTool
.
GGraphPath
;
TGraphPath
=
ConfigurationTTool
.
TGraphPath
;
UPPAALCodeDirectory
=
ConfigurationTTool
.
UPPAALCodeDirectory
;
}
public
static
void
setDirConfig
(
File
dir
)
{
...
...
@@ -107,6 +112,7 @@ public class SpecConfigTTool {
DocGenPath
=
dir
.
getAbsolutePath
()
+
ProjectDocGenDirectory
;
GGraphPath
=
dir
.
getAbsolutePath
()
+
ProjectGGraphPath
;
TGraphPath
=
dir
.
getAbsolutePath
()
+
ProjectTGraphPath
;
UPPAALCodeDirectory
=
dir
.
getAbsolutePath
()
+
ProjectUPPAALCodeDirectory
;
SystemCCodeCompileCommand
=
ConfigurationTTool
.
SystemCCodeCompileCommand
.
replace
(
ConfigurationTTool
.
SystemCCodeDirectory
,
SystemCCodeDirectory
);
SystemCCodeExecuteCommand
=
ConfigurationTTool
.
SystemCCodeExecuteCommand
.
replace
(
ConfigurationTTool
.
SystemCCodeDirectory
,
SystemCCodeDirectory
);
...
...
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