Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backgroundsubtraction_tracker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
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
bioroboticslab
biotracker
backgroundsubtraction_tracker
Commits
2149821e
Commit
2149821e
authored
5 years ago
by
calrama
Browse files
Options
Downloads
Patches
Plain Diff
Update use of (git) source version
parent
000a8745
No related branches found
No related tags found
No related merge requests found
Pipeline
#26344
failed
5 years ago
Stage: build
Stage: package
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CMakeLists.txt
+6
-7
6 additions, 7 deletions
CMakeLists.txt
Src/BioTrackerPlugin.json.in
+1
-1
1 addition, 1 deletion
Src/BioTrackerPlugin.json.in
Src/CMakeLists.txt
+0
-3
0 additions, 3 deletions
Src/CMakeLists.txt
Src/plugin.json.in
+1
-1
1 addition, 1 deletion
Src/plugin.json.in
VERSION
+0
-1
0 additions, 1 deletion
VERSION
with
8 additions
and
13 deletions
CMakeLists.txt
+
6
−
7
View file @
2149821e
cmake_minimum_required
(
VERSION 3.13
)
file
(
READ VERSION PROJECT
_VERSION
)
exec_program
(
"git"
${
CMAKE_CURRENT_SOURCE_DIR
}
ARGS
"describe --dirty --always --exclude '*'"
OUTPUT_VARIABLE SOURCE
_VERSION
)
project
(
biotracker-lucaskanade.bio_tracker
)
project
(
biotracker-background_subtraction_tracker
LANGUAGES CXX
)
if
(
"
${
CMAKE_SYSTEM_NAME
}
"
STREQUAL
"Windows"
)
option
(
PACKAGE_WINDOWS_MSI
"Create .msi package"
OFF
)
endif
()
option
(
PACKAGE_TXZ
"Create .tar.xz package"
OFF
)
find_package
(
biotracker-utility
0.2
REQUIRED
)
find_package
(
biotracker-utility REQUIRED
)
add_subdirectory
(
Src
)
include
(
cmake/Locate.cmake
)
if
(
"
${
CMAKE_SYSTEM_NAME
}
"
STREQUAL
"Windows"
)
install
(
TARGETS
${
target
}
DESTINATION .
)
option
(
INSTALL_REQUIRED_SYSTEM_LIBRARIES
"Install required system libraries"
OFF
)
if
(
INSTALL_REQUIRED_SYSTEM_LIBRARIES
)
set
(
CMAKE_INSTALL_UCRT_LIBRARIES TRUE
)
...
...
@@ -38,8 +38,7 @@ endif()
set
(
CPACK_PACKAGE_NAME
"BioTracker Plugin BackgroundSubtraction"
)
set
(
CPACK_PACKAGE_VENDOR
"Biorobotics Lab / FU Berlin"
)
set
(
CPACK_PACKAGE_VERSION
${
PROJECT_VERSION
}
)
set
(
CPACK_PACKAGE_VERSION
${
SOURCE_VERSION
}
)
if
(
PACKAGE_WINDOWS_MSI
)
set
(
CPACK_GENERATOR
"WIX"
)
...
...
This diff is collapsed.
Click to expand it.
Src/BioTrackerPlugin.json.in
+
1
−
1
View file @
2149821e
{ "type" : "TrackingPlugin",
"name" : "Background Subtraction Tracker",
"longname" : "some long name",
"version" : "
CURRENT_GIT_HASH
",
"version" : "
SOURCE_VERSION
",
"dependencies" : []
}
This diff is collapsed.
Click to expand it.
Src/CMakeLists.txt
+
0
−
3
View file @
2149821e
...
...
@@ -2,9 +2,6 @@
#### Biotracker: backgroundSubtraction
##############################################################
include
(
biotracker-utility/VSSugar
)
VSSourceGroups
(
${
CMAKE_CURRENT_LIST_DIR
}
)
include
(
biotracker-utility/TrackerPlugin
)
set
(
target biotracker-backgroundSubtraction.bio_tracker
)
...
...
This diff is collapsed.
Click to expand it.
Src/plugin.json.in
+
1
−
1
View file @
2149821e
{ "type" : "TrackingPlugin",
"name" : "Background Subtraction Tracker",
"longname" : "some long name",
"version" : "@
CURRENT_GIT_HASH
@",
"version" : "@
SOURCE_VERSION
@",
"dependencies" : []
}
This diff is collapsed.
Click to expand it.
VERSION
deleted
100644 → 0
+
0
−
1
View file @
000a8745
0.2.0
\ No newline at end of file
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