Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
50159cab
Commit
50159cab
authored
8 years ago
by
James Goppert
Committed by
Lorenz Meier
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Automatically set cmake version.
parent
73462dc5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+7
-4
7 additions, 4 deletions
CMakeLists.txt
Makefile
+3
-5
3 additions, 5 deletions
Makefile
with
10 additions
and
9 deletions
CMakeLists.txt
+
7
−
4
View file @
50159cab
...
...
@@ -242,17 +242,20 @@ if (NOT ${CMAKE_VERSION} VERSION_LESS 3.1.0)
cmake_policy
(
SET CMP0054 NEW
)
# don't dereference quoted variables
endif
()
# version info from git
execute_process
(
COMMAND Tools/tag_to_version.py
${
PX4_SOURCE_DIR
}
OUTPUT_VARIABLE version
WORKING_DIRECTORY
${
PX4_SOURCE_DIR
}
)
execute_process
(
COMMAND git describe --always --tags
OUTPUT_VARIABLE git_tag
OUTPUT_STRIP_TRAILING_WHITESPACE
WORKING_DIRECTORY
${
PX4_SOURCE_DIR
}
)
set
(
version_major 1
)
set
(
version_minor 5
)
set
(
version_patch 0
)
set
(
version
"
${
version_major
}
.
${
version_minor
}
.
${
version_patch
}
"
)
set
(
package-contact
"px4users@googlegroups.com"
)
message
(
STATUS
"PX4 VERSION:
${
version
}
"
)
#=============================================================================
# find programs and packages
...
...
This diff is collapsed.
Click to expand it.
Makefile
+
3
−
5
View file @
50159cab
...
...
@@ -260,11 +260,9 @@ format:
check_%
:
@
echo
$(
call colorecho,
"Building"
$(
subst check_,,
$@
))
@$(
MAKE
)
--no-print-directory
$(
subst check_,,
$@
)
@
mkdir
-p
Binaries
@
mkdir
-p
Meta/
$(
subst check_,,
$@
)
@
cp
build_
$(
subst check_,,
$@
)
/
*
.xml Meta/
$(
subst check_,,
$@
)
2> /dev/null
||
:
@
find build_
$(
subst check_,,
$@
)
/src/firmware
-type
f
-name
'nuttx-*-default.px4'
-exec
cp
"{}"
Binaries
\;
2> /dev/null
||
:
@$(
MAKE
)
--no-print-directory
$(
subst check_,,
$@
)
package
@
mkdir
-p
Packages
@
cp
build_
$(
subst check_,,
$@
)
/
*
.zip Packages
@
rm
-rf
build_
$(
subst check_,,
$@
)
@
echo
...
...
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