Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
chaosframework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
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
chaos-lnf-control
chaosframework
Commits
3f717fa3
Commit
3f717fa3
authored
5 years ago
by
Alessandro D'Uffizi
Browse files
Options
Downloads
Patches
Plain Diff
Fixed CMakeLists on mds client and micro unit toolkit on Windows Targets
parent
8a51d52f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
chaos_metadata_service_client/CMakeLists.txt
+7
-1
7 additions, 1 deletion
chaos_metadata_service_client/CMakeLists.txt
chaos_micro_unit_toolkit/CMakeLists.txt
+5
-0
5 additions, 0 deletions
chaos_micro_unit_toolkit/CMakeLists.txt
with
12 additions
and
1 deletion
chaos_metadata_service_client/CMakeLists.txt
+
7
−
1
View file @
3f717fa3
...
@@ -4,7 +4,9 @@ project(chaos_metadata_service_client)
...
@@ -4,7 +4,9 @@ project(chaos_metadata_service_client)
IF
(
WIN32
)
IF
(
WIN32
)
include_directories
(
../../
${
ALL_WINDOWS_INCLUDE_DIR
}
)
INCLUDE_DIRECTORIES
(
${
CMAKE_INSTALL_PREFIX
}
/boostinstall/include/boost-1_70
)
link_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
/boostinstall/lib
)
ELSE
()
ELSE
()
INCLUDE_DIRECTORIES
(
../
)
INCLUDE_DIRECTORIES
(
../
)
ENDIF
()
ENDIF
()
...
@@ -131,6 +133,10 @@ SET(mcl_src ${mcl_src} monitor_system/MonitorManager.cpp
...
@@ -131,6 +133,10 @@ SET(mcl_src ${mcl_src} monitor_system/MonitorManager.cpp
monitor_system/AbstractQuantumKeyAttributeHandler.cpp
monitor_system/AbstractQuantumKeyAttributeHandler.cpp
monitor_system/QuantumTSTaggedAttributeHandler.cpp
)
monitor_system/QuantumTSTaggedAttributeHandler.cpp
)
IF
(
WIN32
)
SET
(
BUILD_FORCE_STATIC 1
)
ENDIF
(
WIN32
)
IF
(
BUILD_FORCE_STATIC
)
IF
(
BUILD_FORCE_STATIC
)
ADD_LIBRARY
(
${
PROJECT_NAME
}
STATIC
${
mcl_src
}
)
ADD_LIBRARY
(
${
PROJECT_NAME
}
STATIC
${
mcl_src
}
)
ELSE
()
ELSE
()
...
...
This diff is collapsed.
Click to expand it.
chaos_micro_unit_toolkit/CMakeLists.txt
+
5
−
0
View file @
3f717fa3
...
@@ -4,6 +4,11 @@ project(chaos_micro_unit_toolkit)
...
@@ -4,6 +4,11 @@ project(chaos_micro_unit_toolkit)
if
(
WIN32
)
if
(
WIN32
)
include_directories
(
${
ALL_WINDOWS_INCLUDE_DIR
}
)
include_directories
(
${
ALL_WINDOWS_INCLUDE_DIR
}
)
INCLUDE_DIRECTORIES
(
${
CMAKE_INSTALL_PREFIX
}
/boostinstall/include/boost-1_70
)
link_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
/boostinstall/lib
)
SET
(
BUILD_FORCE_STATIC 1
)
else
()
else
()
include_directories
(
../
)
include_directories
(
../
)
endif
(
WIN32
)
endif
(
WIN32
)
...
...
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