Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
fb120859
Commit
fb120859
authored
Mar 09, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PACKAGE_VERSION_* generation with cmake
parent
24c38138
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
extras/buildsystem/cmake/config.h.cmake
extras/buildsystem/cmake/config.h.cmake
+3
-3
extras/buildsystem/cmake/include/config.cmake
extras/buildsystem/cmake/include/config.cmake
+3
-3
No files found.
extras/buildsystem/cmake/config.h.cmake
View file @
fb120859
...
...
@@ -333,9 +333,9 @@
#cmakedefine PACKAGE_TARNAME "${PACKAGE_TARNAME}"
#cmakedefine PACKAGE_VERSION "${PACKAGE_VERSION}"
#cmakedefine PACKAGE_VERSION_EXTRA "${PACKAGE_VERSION_EXTRA}"
#
cmakedefine PACKAGE_VERSION_MAJOR ${PACKAGE_VERSION_MAJOR}
#
cmakedefine PACKAGE_VERSION_MINOR ${PACKAGE_VERSION_MINOR}
#
cmakedefine PACKAGE_VERSION_REVISION ${PACKAGE_VERSION_REVISION}
#
define PACKAGE_VERSION_MAJOR "@PACKAGE_VERSION_MAJOR@"
#
define PACKAGE_VERSION_MINOR "@PACKAGE_VERSION_MINOR@"
#
define PACKAGE_VERSION_REVISION "@PACKAGE_VERSION_REVISION@"
#cmakedefine PRI_MACROS_BROKEN
#cmakedefine RETSIGTYPE
#cmakedefine SDL_IMAGE_INCLUDE_FILE
...
...
extras/buildsystem/cmake/include/config.cmake
View file @
fb120859
...
...
@@ -63,9 +63,9 @@ include( ${CMAKE_SOURCE_DIR}/cmake/pkg_check_modules.cmake )
# Versioning
###########################################################
set
(
VLC_VERSION_MAJOR
0
)
set
(
VLC_VERSION_MINOR
9
)
set
(
VLC_VERSION_PATCH
0
)
set
(
VLC_VERSION_MAJOR
"0"
)
set
(
VLC_VERSION_MINOR
"9"
)
set
(
VLC_VERSION_PATCH
"0"
)
set
(
VLC_VERSION_EXTRA
"-svn"
)
set
(
VLC_VERSION
${
VLC_VERSION_MAJOR
}
.
${
VLC_VERSION_MINOR
}
.
${
VLC_VERSION_PATCH
}${
VLC_VERSION_EXTRA
}
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment