Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sogMBT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
PMC-SOG
sogMBT
Commits
7252399d
Commit
7252399d
authored
2 years ago
by
Jaime Arias
Browse files
Options
Downloads
Patches
Plain Diff
add installation folder
parent
3ccc127c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
CMakeLists.txt
+3
-0
3 additions, 0 deletions
CMakeLists.txt
src/CMakeLists.txt
+6
-1
6 additions, 1 deletion
src/CMakeLists.txt
with
10 additions
and
1 deletion
.gitignore
+
1
−
0
View file @
7252399d
...
...
@@ -104,4 +104,5 @@ _deps
*-prefix/
**/build
assets
# End of https://www.toptal.com/developers/gitignore/api/c++,visualstudiocode
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
3
−
0
View file @
7252399d
...
...
@@ -9,6 +9,9 @@ set(CMAKE_CXX_STANDARD 14)
set
(
CMAKE_CXX_STANDARD_REQUIRED ON
)
set
(
CMAKE_CXX_EXTENSIONS OFF
)
# Installing folder
set
(
INSTALL_FOLDER
${
sogMBT_SOURCE_DIR
}
/assets
)
# libraries PATH
set
(
LIBS_DIR
${
CMAKE_CURRENT_SOURCE_DIR
}
/libs
)
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
6
−
1
View file @
7252399d
# set minimum cmake version
cmake_minimum_required
(
VERSION 3.5 FATAL_ERROR
)
# main program
add_executable
(
sogMBT main.cpp
MDGraph.cpp
RdPBDD.cpp
Modular_Obs_Graph.cpp
)
# link libraries
target_include_directories
(
sogMBT PRIVATE
"
${
BUDDY_DIR
}
/src"
"
${
PARSER_DIR
}
/src"
)
target_link_libraries
(
sogMBT bdd RdP cli11
)
\ No newline at end of file
target_link_libraries
(
sogMBT bdd RdP cli11
)
# Installation folder
install
(
TARGETS sogMBT DESTINATION
${
INSTALL_FOLDER
}
)
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