Skip to content

Commit

Permalink
Merge pull request #14 from leapmotion/rm-printouts
Browse files Browse the repository at this point in the history
Remove unnecessary message() calls on configuration
  • Loading branch information
codemercenary committed Aug 12, 2016
2 parents 144739a + 33e291c commit a1b05cf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions standard/CombinedInstaller.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ include(DefaultValue)
include(ParseVersion)

function(combined_installer)
message("Project name is ${CMAKE_PROJECT_NAME}")
if(COMBINED_INSTALLER_DEBUG)
message("Project name is ${CMAKE_PROJECT_NAME}")
endif()

set(options )
set(oneValueArgs NAME VENDOR CONTACT VERSION GUID LICENSE README WIXFILE)
Expand Down Expand Up @@ -97,7 +99,9 @@ function(combined_installer)
#
# For more information on the rationale for this process, see the discussion on semantic versioning
# found at http://semver.org/
message("Upgrade GUID is ${ARG_GUID}")
if(COMBINED_INSTALLER_DEBUG)
message("Upgrade GUID is ${ARG_GUID}")
endif()
set(CPACK_WIX_UPGRADE_GUID "{${ARG_GUID}}")

# Need a custom wix installation template so that we update the CMake package registry correctly
Expand Down

0 comments on commit a1b05cf

Please sign in to comment.