Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alarm-handler
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
cs
ds
alarm-handler
Merge requests
!3
Resolve "Add macOS compatibility"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add macOS compatibility"
1-add-macos-compatibility
into
master
Overview
0
Commits
8
Pipelines
8
Changes
25
Merged
Thomas Juerges
requested to merge
1-add-macos-compatibility
into
master
11 months ago
Overview
0
Commits
8
Pipelines
8
Changes
2
Expand
Closes
#1 (closed)
0
0
Merge request reports
Compare
version 2
version 5
7fc402d3
6 months ago
version 4
87be96d9
9 months ago
version 3
77570ff2
9 months ago
version 2
6f5b41d6
9 months ago
version 1
f4594b7c
9 months ago
master (base)
and
version 3
latest version
0957e455
8 commits,
6 months ago
version 5
7fc402d3
7 commits,
6 months ago
version 4
87be96d9
6 commits,
9 months ago
version 3
77570ff2
6 commits,
9 months ago
version 2
6f5b41d6
5 commits,
9 months ago
version 1
f4594b7c
4 commits,
9 months ago
Show latest version
2 files
+
24
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
test/testdevice/CMakeLists.txt
+
14
−
0
Options
@@ -82,6 +82,20 @@ set_target_properties(testdevice
LINK_FLAGS
"-Wl,--no-undefined"
CXX_STANDARD 17
)
if
(
NOT
(
CMAKE_CXX_COMPILER_ID STREQUAL
"AppleClang"
OR CMAKE_CXX_COMPILER_ID STREQUAL
"Clang"
))
set_target_properties
(
alarm_handler
PROPERTIES
OUTPUT_NAME
${
DEV_NAME
}
LINK_FLAGS
"-Wl,--no-undefined"
CXX_STANDARD 17
)
else
()
set_target_properties
(
alarm_handler
PROPERTIES
OUTPUT_NAME
${
DEV_NAME
}
LINK_FLAGS
""
CXX_STANDARD 17
)
endif
()
target_compile_options
(
testdevice
PRIVATE
"$<$<CONFIG:DEBUG>:-g>"
)