-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More cmake fixes #71
More cmake fixes #71
Conversation
@SoapGentoo Your partconvert patch is better than mine. :) I'm currently trying to bump a lot of packages, and can add this one to Partio. Thanks. |
* partconv is the name of a program used by Crystal Space See also: https://bugs.gentoo.org/631834
* Only enable C++ Speeds up the configure process
* SoapGentoo/more-cmake-fixes: More CMake modernizations Use GNUInstallDirs everywhere Rename partconv to partconvert to avoid file collisions Signed-off-by: David Aguilar <davvid@gmail.com>
Thanks for renaming the executable. In the future if we hit conflicts we could call them e.g. |
SET( ${PROJECT_NAME}_MINOR_VERSION 1 ) | ||
SET( ${PROJECT_NAME}_PATCH_LEVEL 0 ) | ||
include(GNUInstallDirs) | ||
PROJECT( partio LANGUAGES CXX VERSION 0.1.1 ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@davvid I bumped this to 0.1.1
for all the fixes. Could you please tag a new release so we can add it in Gentoo and remove all the patches?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @SoapGentoo I just tagged partio v1.5.0
. This includes a merge of our internal changes so that we're 1:1 identical with the open source version now. Let me know if I missed anything and we can fix and tag a new version as needed.
Hi @davvid
some more small fixes to polish up the CMake.
the
partconv
binary collides with a game that uses the same name, can we rename this to avoid the collision?