Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dune-copasi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COPASI
dune-copasi
Commits
bfbf60be
Commit
bfbf60be
authored
4 years ago
by
Santiago Ospina De Los Ríos
Browse files
Options
Downloads
Patches
Plain Diff
Set directory to sources
parent
d84b8c31
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!49
Resolve "Finish installation and usage instruction on the documentation"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+3
-3
3 additions, 3 deletions
CMakeLists.txt
src/CMakeLists.txt
+2
-2
2 additions, 2 deletions
src/CMakeLists.txt
with
5 additions
and
5 deletions
CMakeLists.txt
+
3
−
3
View file @
bfbf60be
...
...
@@ -4,9 +4,9 @@ project(dune-copasi CXX)
include
(
GNUInstallDirs
)
cmake_policy
(
SET CMP0074 NEW
)
#
if(POLICY CMP0087)
#
cmake_policy(SET CMP0087 OLD)
#
endif()
if
(
POLICY CMP0087
)
cmake_policy
(
SET CMP0087 OLD
)
endif
()
# define cmake options
option
(
DUNE_COPASI_SD_EXECUTABLE
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
2
−
2
View file @
bfbf60be
...
...
@@ -5,7 +5,7 @@ target_sources(dune-copasi
)
# set up single-domain executable
add_executable
(
singledomain-exec EXCLUDE_FROM_ALL dune_copasi_sd.cc
)
add_executable
(
singledomain-exec EXCLUDE_FROM_ALL
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/
dune_copasi_sd.cc
"
)
target_link_libraries
(
singledomain-exec PRIVATE dune-copasi
)
if
(
DUNE_COPASI_SD_EXECUTABLE
)
set_target_properties
(
singledomain-exec PROPERTIES EXCLUDE_FROM_ALL OFF
)
...
...
@@ -18,7 +18,7 @@ endif()
set_property
(
TARGET singledomain-exec PROPERTY RUNTIME_OUTPUT_NAME dune-copasi-sd
)
# set up multi-domain executable
add_executable
(
multidomain-exec EXCLUDE_FROM_ALL dune_copasi_md.cc
)
add_executable
(
multidomain-exec EXCLUDE_FROM_ALL
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/
dune_copasi_md.cc
"
)
target_link_libraries
(
multidomain-exec PRIVATE dune-copasi
)
if
(
DUNE_COPASI_MD_EXECUTABLE
)
set_target_properties
(
multidomain-exec PROPERTIES EXCLUDE_FROM_ALL OFF
)
...
...
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