Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HighBlueParsers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Paul Best
HighBlueParsers
Merge requests
!1
High blue rec
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
High blue rec
pierre.mahe/highblueparsers:HighBlueRec
into
main
Overview
0
Commits
17
Pipelines
0
Changes
12
Closed
Pierre Mahe
requested to merge
pierre.mahe/highblueparsers:HighBlueRec
into
main
1 year ago
Overview
0
Commits
17
Pipelines
0
Changes
12
Expand
Increment version number
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
72f85559
17 commits,
1 year ago
12 files
+
1287
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
src/CMakeLists.txt
0 → 100644
+
20
−
0
Options
add_executable
(
jasonrec
recorder.cpp
filewriter.cpp
cleanexit.cpp
main.cpp
)
# compile as C++11
set_property
(
TARGET jasonrec
PROPERTY CXX_STANDARD 11
)
# do not export any symbols by default
set_property
(
TARGET jasonrec
PROPERTY CXX_VISIBILITY_PRESET hidden
)
set_property
(
TARGET jasonrec
PROPERTY VISIBILITY_INLINES_HIDDEN true
)
target_include_directories
(
jasonrec
PRIVATE
${
LIBUSB_INCLUDE_DIR
}
)
target_link_libraries
(
jasonrec
${
LIBUSB_LIBRARY
}
)
install
(
TARGETS jasonrec DESTINATION bin
)
Loading