Skip to content

Commit 28bbccf

Browse files
committed
fix in CMakefile for core.system installation of AlgLoopSolverFactory.h file
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@15747 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent 276750e commit 28bbccf

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

SimulationRuntime/cpp/Core/SimController/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ int main(int argc, const char* argv[])
4747
//cout << "runtime library path set to " << vm["runtime-libray"].as<string>() << std::endl;
4848
runtime_lib_path = vm["runtime-libray"].as<string>();
4949

50-
}
50+
}
5151
else
5252
{
5353
cerr << "runtime libraries path is not set";

SimulationRuntime/cpp/Core/System/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ install (FILES
2222
DESTINATION include/omc/cpp/Core/System)
2323
install (FILES
2424
${CMAKE_SOURCE_DIR}/Include/Core/System/IAlgLoop.h
25-
${CMAKE_SOURCE_DIR}/Include/Core/System/IContinuous.h
25+
${CMAKE_SOURCE_DIR}/Include/Core/System/IAlgLoopSolverFactory.h
26+
${CMAKE_SOURCE_DIR}/Include/Core/System/IContinuous.h
2627
${CMAKE_SOURCE_DIR}/Include/Core/System/IMixedSystem.h
2728
${CMAKE_SOURCE_DIR}/Include/Core/System/IEvent.h
2829
${CMAKE_SOURCE_DIR}/Include/Core/System/ISystemProperties.h

SimulationRuntime/cpp/Solver/CVode/CVode.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#include "CVode.h"
33
#include "CVodeSettings.h"
44
#include <Math/Functions.h>
5-
#include <System/ISystemProperties.h>
6-
#include <System/ISystemProperties.h>
5+
#include <System/ISystemProperties.h>
6+
#include <System/ISystemProperties.h>
77
#include <System/IStepEvent.h>
88

99

0 commit comments

Comments
 (0)