cmake/Modules/FindSelfPackers.cmake

69 lines
1.8 KiB
CMake
Raw Normal View History

# - Find upx
2013-03-16 19:13:01 +02:00
# This module looks for some executable packers (i.e. software that
# compress executables or shared libs into on-the-fly self-extracting
# executables or shared libs.
# Examples:
# UPX: http://wildsau.idv.uni-linz.ac.at/mfx/upx.html
2009-10-04 10:30:41 +03:00
#=============================================================================
# Copyright 2001-2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
2010-11-13 01:00:53 +02:00
# (To distribute this file outside of CMake, substitute the full
2009-10-04 10:30:41 +03:00
# License text for the above reference.)
2013-03-16 19:13:01 +02:00
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
2013-03-16 19:13:01 +02:00
find_program(SELF_PACKER_FOR_EXECUTABLE
upx
${CYGWIN_INSTALL_PATH}/bin
/bin
2013-03-16 19:13:01 +02:00
/usr/bin
/usr/local/bin
/sbin
)
2013-03-16 19:13:01 +02:00
find_program(SELF_PACKER_FOR_SHARED_LIB
upx
${CYGWIN_INSTALL_PATH}/bin
/bin
2013-03-16 19:13:01 +02:00
/usr/bin
/usr/local/bin
/sbin
)
2013-03-16 19:13:01 +02:00
mark_as_advanced(
SELF_PACKER_FOR_EXECUTABLE
SELF_PACKER_FOR_SHARED_LIB
)
#
# Set flags
#
2013-03-16 19:13:01 +02:00
if (SELF_PACKER_FOR_EXECUTABLE MATCHES "upx")
set (SELF_PACKER_FOR_EXECUTABLE_FLAGS "-q" CACHE STRING
"Flags for the executable self-packer.")
2013-03-16 19:13:01 +02:00
else ()
set (SELF_PACKER_FOR_EXECUTABLE_FLAGS "" CACHE STRING
"Flags for the executable self-packer.")
2013-03-16 19:13:01 +02:00
endif ()
2013-03-16 19:13:01 +02:00
if (SELF_PACKER_FOR_SHARED_LIB MATCHES "upx")
set (SELF_PACKER_FOR_SHARED_LIB_FLAGS "-q" CACHE STRING
"Flags for the shared lib self-packer.")
2013-03-16 19:13:01 +02:00
else ()
set (SELF_PACKER_FOR_SHARED_LIB_FLAGS "" CACHE STRING
"Flags for the shared lib self-packer.")
2013-03-16 19:13:01 +02:00
endif ()
2013-03-16 19:13:01 +02:00
mark_as_advanced(
SELF_PACKER_FOR_EXECUTABLE_FLAGS
SELF_PACKER_FOR_SHARED_LIB_FLAGS
)