Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ACS
Public
Power System Simulation and Optimization
DPsim
DPsim
Commits
69179ee8
Commit
69179ee8
authored
Aug 31, 2017
by
Georg Martin Reinke
Browse files
fix CI
parent
4df295cc
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
69179ee8
...
@@ -18,7 +18,7 @@ build:
...
@@ -18,7 +18,7 @@ build:
script
:
script
:
-
mkdir Source/build
-
mkdir Source/build
-
cd Source/build
-
cd Source/build
-
cmake
-DEigen3_DIR=/usr/share/eigen3
..
-
cmake ..
-
make
-
make
image
:
${DOCKER_IMAGE}
image
:
${DOCKER_IMAGE}
tags
:
tags
:
...
...
Source/CMakeLists.txt
View file @
69179ee8
cmake_minimum_required
(
VERSION 3.0
)
cmake_minimum_required
(
VERSION 3.0
)
project
(
DPsim
)
project
(
DPsim
)
find_package
(
Eigen3 REQUIRED
NO_MODULE
)
find_package
(
Eigen3 REQUIRED
)
add_subdirectory
(
CIM-XML-Parser
)
add_subdirectory
(
CIM-XML-Parser
)
file
(
GLOB SOURCES *.cpp Components/*.cpp Examples/*.cpp
)
file
(
GLOB SOURCES *.cpp Components/*.cpp Examples/*.cpp
)
add_executable
(
DPSolver
${
SOURCES
}
)
add_executable
(
DPSolver
${
SOURCES
}
)
target_link_libraries
(
DPSolver Eigen3::Eigen CIMParser -lrt -lvillas-ext
)
include_directories
(
${
EIGEN3_INCLUDE_DIR
}
)
target_link_libraries
(
DPSolver CIMParser -lrt -lvillas-ext
)
Write
Preview
Supports
Markdown
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