Merge topic 'LINK_LIBRARIES-property' into rpath-use-implicit-link-dirs
Resolve a logical conflict in the signature of cmTarget::GetLinkClosure.
This commit is contained in:
commit
95a9c80cac
|
@ -51,3 +51,27 @@ if("${CPACK_GENERATOR}" STREQUAL "PackageMaker")
|
||||||
set(CPACK_PACKAGE_DEFAULT_LOCATION "/usr")
|
set(CPACK_PACKAGE_DEFAULT_LOCATION "/usr")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if("${CPACK_GENERATOR}" STREQUAL "WIX")
|
||||||
|
# Reset CPACK_PACKAGE_VERSION to deal with WiX restriction.
|
||||||
|
# But the file names still use the full CMake_VERSION value:
|
||||||
|
set(CPACK_PACKAGE_FILE_NAME
|
||||||
|
"${CPACK_PACKAGE_NAME}-@CMake_VERSION@-${CPACK_SYSTEM_NAME}")
|
||||||
|
set(CPACK_SOURCE_PACKAGE_FILE_NAME
|
||||||
|
"${CPACK_PACKAGE_NAME}-@CMake_VERSION@-Source")
|
||||||
|
|
||||||
|
if(NOT CPACK_WIX_SIZEOF_VOID_P)
|
||||||
|
set(CPACK_WIX_SIZEOF_VOID_P "@CMAKE_SIZEOF_VOID_P@")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CPACK_PACKAGE_VERSION
|
||||||
|
"@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@.@CMake_VERSION_PATCH@")
|
||||||
|
# WIX installers require at most a 4 component version number, where
|
||||||
|
# each component is an integer between 0 and 65534 inclusive
|
||||||
|
set(tweak "@CMake_VERSION_TWEAK@")
|
||||||
|
if(tweak MATCHES "^[0-9]+$")
|
||||||
|
if(tweak GREATER 0 AND tweak LESS 65535)
|
||||||
|
set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION}.${tweak}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
|
@ -234,8 +234,6 @@ macro (CMAKE_BUILD_UTILITIES)
|
||||||
set(kwsys_folder "Utilities/KWSys")
|
set(kwsys_folder "Utilities/KWSys")
|
||||||
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE} "${kwsys_folder}")
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE} "${kwsys_folder}")
|
||||||
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}_c "${kwsys_folder}")
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}_c "${kwsys_folder}")
|
||||||
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}EncodeExecutable "${kwsys_folder}")
|
|
||||||
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}ProcessFwd9x "${kwsys_folder}")
|
|
||||||
if(BUILD_TESTING)
|
if(BUILD_TESTING)
|
||||||
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}TestDynload "${kwsys_folder}")
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}TestDynload "${kwsys_folder}")
|
||||||
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}TestProcess "${kwsys_folder}")
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}TestProcess "${kwsys_folder}")
|
||||||
|
@ -585,6 +583,29 @@ option(CMAKE_STRICT
|
||||||
"Perform strict testing to record property and variable access. Can be used to report any undefined properties or variables" OFF)
|
"Perform strict testing to record property and variable access. Can be used to report any undefined properties or variables" OFF)
|
||||||
mark_as_advanced(CMAKE_STRICT)
|
mark_as_advanced(CMAKE_STRICT)
|
||||||
|
|
||||||
|
if(NOT CMake_VERSION_IS_RELEASE)
|
||||||
|
if("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" AND
|
||||||
|
NOT "${CMAKE_C_COMPILER_VERSION}" VERSION_LESS 4.2)
|
||||||
|
set(C_FLAGS_LIST -Wcast-align -Werror-implicit-function-declaration -Wchar-subscripts
|
||||||
|
-Wall -W -Wpointer-arith -Wwrite-strings -Wformat-security
|
||||||
|
-Wmissing-format-attribute -fno-common
|
||||||
|
)
|
||||||
|
set(CXX_FLAGS_LIST -Wnon-virtual-dtor -Wcast-align -Wchar-subscripts -Wall -W
|
||||||
|
-Wshadow -Wpointer-arith -Wformat-security
|
||||||
|
)
|
||||||
|
|
||||||
|
foreach(FLAG_LANG C CXX)
|
||||||
|
foreach(FLAG ${${FLAG_LANG}_FLAGS_LIST})
|
||||||
|
if(NOT " ${CMAKE_${FLAG_LANG}_FLAGS} " MATCHES " ${FLAG} ")
|
||||||
|
set(CMAKE_${FLAG_LANG}_FLAGS "${CMAKE_${FLAG_LANG}_FLAGS} ${FLAG}")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
unset(C_FLAGS_LIST)
|
||||||
|
unset(CXX_FLAGS_LIST)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
# build the remaining subdirectories
|
# build the remaining subdirectories
|
||||||
add_subdirectory(Source)
|
add_subdirectory(Source)
|
||||||
|
|
|
@ -31,6 +31,7 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION
|
||||||
"remark: .*LOOP WAS VECTORIZED"
|
"remark: .*LOOP WAS VECTORIZED"
|
||||||
"warning .980: wrong number of actual arguments to intrinsic function .std::basic_"
|
"warning .980: wrong number of actual arguments to intrinsic function .std::basic_"
|
||||||
"LINK : warning LNK4089: all references to.*ADVAPI32.dll.*discarded by /OPT:REF"
|
"LINK : warning LNK4089: all references to.*ADVAPI32.dll.*discarded by /OPT:REF"
|
||||||
|
"LINK : warning LNK4089: all references to.*PSAPI.DLL.*discarded by /OPT:REF"
|
||||||
"LINK : warning LNK4089: all references to.*USER32.dll.*discarded by /OPT:REF"
|
"LINK : warning LNK4089: all references to.*USER32.dll.*discarded by /OPT:REF"
|
||||||
"Warning: library was too large for page size.*"
|
"Warning: library was too large for page size.*"
|
||||||
"Warning: public.*_archive_.*in module.*archive_*clashes with prior module.*archive_.*"
|
"Warning: public.*_archive_.*in module.*archive_*clashes with prior module.*archive_.*"
|
||||||
|
|
|
@ -62,3 +62,9 @@ endif ()
|
||||||
if (CMAKE_ANSI_CFLAGS)
|
if (CMAKE_ANSI_CFLAGS)
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_ANSI_CFLAGS}")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_ANSI_CFLAGS}")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
# avoid binutils problem with large binaries, e.g. when building CMake in debug mode
|
||||||
|
# See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50230
|
||||||
|
if (CMAKE_SYSTEM_NAME STREQUAL Linux AND CMAKE_SYSTEM_PROCESSOR STREQUAL parisc)
|
||||||
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--unique=.text.*")
|
||||||
|
endif ()
|
||||||
|
|
|
@ -369,7 +369,7 @@ function(set_bundle_key_values keys_var context item exepath dirs copyflag)
|
||||||
# For frameworks, construct the name under the embedded path from the
|
# For frameworks, construct the name under the embedded path from the
|
||||||
# opening "${item_name}.framework/" to the closing "/${item_name}":
|
# opening "${item_name}.framework/" to the closing "/${item_name}":
|
||||||
#
|
#
|
||||||
string(REGEX REPLACE "^.*(${item_name}.framework/.*/${item_name}).*$" "${default_embedded_path}/\\1" embedded_item "${item}")
|
string(REGEX REPLACE "^.*(${item_name}.framework/.*/?${item_name}).*$" "${default_embedded_path}/\\1" embedded_item "${item}")
|
||||||
else()
|
else()
|
||||||
# For other items, just use the same name as the original, but in the
|
# For other items, just use the same name as the original, but in the
|
||||||
# embedded path:
|
# embedded path:
|
||||||
|
|
|
@ -1,3 +1,19 @@
|
||||||
|
This file provides a few notes to CMake developers about how to add
|
||||||
|
support for a new language to CMake. It is also possible to place
|
||||||
|
these files in CMAKE_MODULE_PATH within an outside project to add
|
||||||
|
languages not supported by upstream CMake. However, this is not
|
||||||
|
a fully supported use case.
|
||||||
|
|
||||||
|
The implementation behind the scenes of project/enable_language,
|
||||||
|
including the compiler/platform modules, is an *internal* API that
|
||||||
|
does not make any compatibility guarantees. It is not covered in the
|
||||||
|
official reference documentation that is versioned with the source code.
|
||||||
|
Maintainers of external language support are responsible for porting
|
||||||
|
it to each version of CMake as upstream changes are made. Since
|
||||||
|
the API is internal we will not necessarily include notice of any
|
||||||
|
changes in release notes.
|
||||||
|
|
||||||
|
|
||||||
CMakeDetermine(LANG)Compiler.cmake -> this should find the compiler for LANG and configure CMake(LANG)Compiler.cmake.in
|
CMakeDetermine(LANG)Compiler.cmake -> this should find the compiler for LANG and configure CMake(LANG)Compiler.cmake.in
|
||||||
|
|
||||||
CMake(LANG)Compiler.cmake.in -> used by CMakeDetermine(LANG)Compiler.cmake
|
CMake(LANG)Compiler.cmake.in -> used by CMakeDetermine(LANG)Compiler.cmake
|
||||||
|
|
|
@ -107,11 +107,14 @@ Id flags: ${testflags}
|
||||||
")
|
")
|
||||||
|
|
||||||
# Compile the compiler identification source.
|
# Compile the compiler identification source.
|
||||||
if("${CMAKE_GENERATOR}" MATCHES "Visual Studio ([0-9]+)( .NET)?( 200[358])? *((Win64|IA64|ARM))?")
|
if("${CMAKE_GENERATOR}" MATCHES "Visual Studio ([0-9]+)")
|
||||||
set(vs_version ${CMAKE_MATCH_1})
|
set(vs_version ${CMAKE_MATCH_1})
|
||||||
set(vs_arch ${CMAKE_MATCH_4})
|
set(id_arch ${CMAKE_VS_PLATFORM_NAME})
|
||||||
set(id_lang "${lang}")
|
set(id_lang "${lang}")
|
||||||
set(id_cl cl.exe)
|
set(id_cl cl.exe)
|
||||||
|
if(NOT id_arch)
|
||||||
|
set(id_arch Win32)
|
||||||
|
endif()
|
||||||
if(NOT "${vs_version}" VERSION_LESS 10)
|
if(NOT "${vs_version}" VERSION_LESS 10)
|
||||||
set(v 10)
|
set(v 10)
|
||||||
set(ext vcxproj)
|
set(ext vcxproj)
|
||||||
|
@ -123,25 +126,26 @@ Id flags: ${testflags}
|
||||||
set(v 6)
|
set(v 6)
|
||||||
set(ext dsp)
|
set(ext dsp)
|
||||||
endif()
|
endif()
|
||||||
if("${vs_arch}" STREQUAL "Win64")
|
if("${id_arch}" STREQUAL "x64")
|
||||||
set(id_machine_7 17)
|
|
||||||
set(id_machine_10 MachineX64)
|
set(id_machine_10 MachineX64)
|
||||||
set(id_arch x64)
|
elseif("${id_arch}" STREQUAL "Itanium")
|
||||||
elseif("${vs_arch}" STREQUAL "IA64")
|
|
||||||
set(id_machine_7 5)
|
|
||||||
set(id_machine_10 MachineIA64)
|
set(id_machine_10 MachineIA64)
|
||||||
set(id_arch ia64)
|
set(id_arch ia64)
|
||||||
else()
|
else()
|
||||||
set(id_machine_6 x86)
|
set(id_machine_6 x86)
|
||||||
set(id_machine_7 1)
|
|
||||||
set(id_machine_10 MachineX86)
|
set(id_machine_10 MachineX86)
|
||||||
set(id_arch Win32)
|
|
||||||
endif()
|
endif()
|
||||||
if(CMAKE_VS_PLATFORM_TOOLSET)
|
if(CMAKE_VS_PLATFORM_TOOLSET)
|
||||||
set(id_toolset "<PlatformToolset>${CMAKE_VS_PLATFORM_TOOLSET}</PlatformToolset>")
|
set(id_toolset "<PlatformToolset>${CMAKE_VS_PLATFORM_TOOLSET}</PlatformToolset>")
|
||||||
else()
|
else()
|
||||||
set(id_toolset "")
|
set(id_toolset "")
|
||||||
endif()
|
endif()
|
||||||
|
if(CMAKE_VS_WINCE_VERSION)
|
||||||
|
set(id_entrypoint "mainACRTStartup")
|
||||||
|
set(id_subsystem 9)
|
||||||
|
else()
|
||||||
|
set(id_subsystem 1)
|
||||||
|
endif()
|
||||||
if("${CMAKE_MAKE_PROGRAM}" MATCHES "[Mm][Ss][Bb][Uu][Ii][Ll][Dd]")
|
if("${CMAKE_MAKE_PROGRAM}" MATCHES "[Mm][Ss][Bb][Uu][Ii][Ll][Dd]")
|
||||||
set(build /p:Configuration=Debug /p:Platform=@id_arch@ /p:VisualStudioVersion=${vs_version}.0)
|
set(build /p:Configuration=Debug /p:Platform=@id_arch@ /p:VisualStudioVersion=${vs_version}.0)
|
||||||
elseif("${CMAKE_MAKE_PROGRAM}" MATCHES "[Mm][Ss][Dd][Ee][Vv]")
|
elseif("${CMAKE_MAKE_PROGRAM}" MATCHES "[Mm][Ss][Dd][Ee][Vv]")
|
||||||
|
|
|
@ -63,6 +63,8 @@ if(NOT CMAKE_Java_COMPILER)
|
||||||
/usr/java/j2sdk1.4.2_09/bin
|
/usr/java/j2sdk1.4.2_09/bin
|
||||||
/usr/lib/j2sdk1.5-sun/bin
|
/usr/lib/j2sdk1.5-sun/bin
|
||||||
/opt/sun-jdk-1.5.0.04/bin
|
/opt/sun-jdk-1.5.0.04/bin
|
||||||
|
/usr/local/jdk-1.7.0/bin
|
||||||
|
/usr/local/jdk-1.6.0/bin
|
||||||
)
|
)
|
||||||
# if no compiler has been specified yet, then look for one
|
# if no compiler has been specified yet, then look for one
|
||||||
if(CMAKE_Java_COMPILER_INIT)
|
if(CMAKE_Java_COMPILER_INIT)
|
||||||
|
|
|
@ -106,6 +106,12 @@ if(CMAKE_SYSTEM_NAME)
|
||||||
set(CMAKE_CROSSCOMPILING TRUE)
|
set(CMAKE_CROSSCOMPILING TRUE)
|
||||||
endif()
|
endif()
|
||||||
set(PRESET_CMAKE_SYSTEM_NAME TRUE)
|
set(PRESET_CMAKE_SYSTEM_NAME TRUE)
|
||||||
|
elseif(CMAKE_VS_WINCE_VERSION)
|
||||||
|
set(CMAKE_SYSTEM_NAME "WindowsCE")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "${CMAKE_VS_WINCE_VERSION}")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "${MSVC_C_ARCHITECTURE_ID}")
|
||||||
|
set(CMAKE_CROSSCOMPILING TRUE)
|
||||||
|
set(PRESET_CMAKE_SYSTEM_NAME TRUE)
|
||||||
else()
|
else()
|
||||||
set(CMAKE_SYSTEM_NAME "${CMAKE_HOST_SYSTEM_NAME}")
|
set(CMAKE_SYSTEM_NAME "${CMAKE_HOST_SYSTEM_NAME}")
|
||||||
set(CMAKE_SYSTEM_VERSION "${CMAKE_HOST_SYSTEM_VERSION}")
|
set(CMAKE_SYSTEM_VERSION "${CMAKE_HOST_SYSTEM_VERSION}")
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(CMakeParseArguments)
|
include(${CMAKE_CURRENT_LIST_DIR}/CMakeParseArguments.cmake)
|
||||||
|
|
||||||
function(CMAKE_EXPAND_IMPORTED_TARGETS _RESULT )
|
function(CMAKE_EXPAND_IMPORTED_TARGETS _RESULT )
|
||||||
|
|
||||||
|
|
|
@ -77,6 +77,8 @@ endif()
|
||||||
# This variable is used by the Eclipse generator and appended to the make invocation commands.
|
# This variable is used by the Eclipse generator and appended to the make invocation commands.
|
||||||
set(CMAKE_ECLIPSE_MAKE_ARGUMENTS "${_CMAKE_ECLIPSE_INITIAL_MAKE_ARGS}" CACHE STRING "Additional command line arguments when Eclipse invokes make. Enter e.g. -j<some_number> to get parallel builds")
|
set(CMAKE_ECLIPSE_MAKE_ARGUMENTS "${_CMAKE_ECLIPSE_INITIAL_MAKE_ARGS}" CACHE STRING "Additional command line arguments when Eclipse invokes make. Enter e.g. -j<some_number> to get parallel builds")
|
||||||
|
|
||||||
|
set(CMAKE_ECLIPSE_GENERATE_LINKED_RESOURCES TRUE CACHE BOOL "If disabled, CMake will not generate linked resource to the subprojects and to the source files within targets")
|
||||||
|
|
||||||
# This variable is used by the Eclipse generator in out-of-source builds only.
|
# This variable is used by the Eclipse generator in out-of-source builds only.
|
||||||
set(CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT FALSE CACHE BOOL "If enabled, CMake will generate a source project for Eclipse in CMAKE_SOURCE_DIR")
|
set(CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT FALSE CACHE BOOL "If enabled, CMake will generate a source project for Eclipse in CMAKE_SOURCE_DIR")
|
||||||
mark_as_advanced(CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT)
|
mark_as_advanced(CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT)
|
||||||
|
|
|
@ -188,8 +188,13 @@ function(CONFIGURE_PACKAGE_CONFIG_FILE _inputFile _outputFile)
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
get_filename_component(inputFileName "${_inputFile}" NAME)
|
||||||
|
|
||||||
set(PACKAGE_INIT "
|
set(PACKAGE_INIT "
|
||||||
####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
|
####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
|
||||||
|
####### Any changes to this file will be overwritten by the next CMake run ####
|
||||||
|
####### The input file was ${inputFileName} ########
|
||||||
|
|
||||||
get_filename_component(PACKAGE_PREFIX_DIR \"\${CMAKE_CURRENT_LIST_DIR}/${PACKAGE_RELATIVE_PATH}\" ABSOLUTE)
|
get_filename_component(PACKAGE_PREFIX_DIR \"\${CMAKE_CURRENT_LIST_DIR}/${PACKAGE_RELATIVE_PATH}\" ABSOLUTE)
|
||||||
")
|
")
|
||||||
|
|
||||||
|
|
|
@ -438,6 +438,7 @@ if(NOT CPACK_GENERATOR)
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
option(CPACK_BINARY_NSIS "Enable to build NSIS packages" ON)
|
option(CPACK_BINARY_NSIS "Enable to build NSIS packages" ON)
|
||||||
|
option(CPACK_BINARY_WIX "Enable to build WiX packages" OFF)
|
||||||
option(CPACK_BINARY_ZIP "Enable to build ZIP packages" OFF)
|
option(CPACK_BINARY_ZIP "Enable to build ZIP packages" OFF)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@ -453,6 +454,7 @@ if(NOT CPACK_GENERATOR)
|
||||||
cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TGZ TGZ)
|
cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TGZ TGZ)
|
||||||
cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TBZ2 TBZ2)
|
cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TBZ2 TBZ2)
|
||||||
cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TZ TZ)
|
cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TZ TZ)
|
||||||
|
cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_WIX WIX)
|
||||||
cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_ZIP ZIP)
|
cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_ZIP ZIP)
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
@ -483,7 +485,7 @@ endif()
|
||||||
mark_as_advanced(CPACK_BINARY_CYGWIN CPACK_BINARY_PACKAGEMAKER CPACK_BINARY_OSXX11
|
mark_as_advanced(CPACK_BINARY_CYGWIN CPACK_BINARY_PACKAGEMAKER CPACK_BINARY_OSXX11
|
||||||
CPACK_BINARY_STGZ CPACK_BINARY_TGZ CPACK_BINARY_TBZ2
|
CPACK_BINARY_STGZ CPACK_BINARY_TGZ CPACK_BINARY_TBZ2
|
||||||
CPACK_BINARY_DEB CPACK_BINARY_RPM CPACK_BINARY_TZ
|
CPACK_BINARY_DEB CPACK_BINARY_RPM CPACK_BINARY_TZ
|
||||||
CPACK_BINARY_NSIS CPACK_BINARY_ZIP CPACK_BINARY_BUNDLE
|
CPACK_BINARY_NSIS CPACK_BINARY_WIX CPACK_BINARY_ZIP CPACK_BINARY_BUNDLE
|
||||||
CPACK_SOURCE_CYGWIN CPACK_SOURCE_TBZ2 CPACK_SOURCE_TGZ
|
CPACK_SOURCE_CYGWIN CPACK_SOURCE_TBZ2 CPACK_SOURCE_TGZ
|
||||||
CPACK_SOURCE_TZ CPACK_SOURCE_ZIP CPACK_BINARY_DRAGNDROP)
|
CPACK_SOURCE_TZ CPACK_SOURCE_ZIP CPACK_BINARY_DRAGNDROP)
|
||||||
|
|
||||||
|
@ -522,6 +524,9 @@ cpack_set_if_not_set(CPACK_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
cpack_set_if_not_set(CPACK_NSIS_INSTALLER_ICON_CODE "")
|
cpack_set_if_not_set(CPACK_NSIS_INSTALLER_ICON_CODE "")
|
||||||
cpack_set_if_not_set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
|
cpack_set_if_not_set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
|
||||||
|
|
||||||
|
# WiX specific variables
|
||||||
|
cpack_set_if_not_set(CPACK_WIX_SIZEOF_VOID_P "${CMAKE_SIZEOF_VOID_P}")
|
||||||
|
|
||||||
if(DEFINED CPACK_COMPONENTS_ALL)
|
if(DEFINED CPACK_COMPONENTS_ALL)
|
||||||
if(CPACK_MONOLITHIC_INSTALL)
|
if(CPACK_MONOLITHIC_INSTALL)
|
||||||
message("CPack warning: both CPACK_COMPONENTS_ALL and CPACK_MONOLITHIC_INSTALL have been set.\nDefaulting to a monolithic installation.")
|
message("CPack warning: both CPACK_COMPONENTS_ALL and CPACK_MONOLITHIC_INSTALL have been set.\nDefaulting to a monolithic installation.")
|
||||||
|
|
|
@ -385,15 +385,13 @@ endif()
|
||||||
# Are we packaging components ?
|
# Are we packaging components ?
|
||||||
if(CPACK_DEB_PACKAGE_COMPONENT)
|
if(CPACK_DEB_PACKAGE_COMPONENT)
|
||||||
set(CPACK_DEB_PACKAGE_COMPONENT_PART_NAME "-${CPACK_DEB_PACKAGE_COMPONENT}")
|
set(CPACK_DEB_PACKAGE_COMPONENT_PART_NAME "-${CPACK_DEB_PACKAGE_COMPONENT}")
|
||||||
set(CPACK_DEB_PACKAGE_COMPONENT_PART_PATH "/${CPACK_DEB_PACKAGE_COMPONENT}")
|
|
||||||
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}/${CPACK_DEB_PACKAGE_COMPONENT}")
|
|
||||||
string(TOLOWER "${CPACK_PACKAGE_NAME}${CPACK_DEB_PACKAGE_COMPONENT_PART_NAME}" CPACK_DEBIAN_PACKAGE_NAME)
|
string(TOLOWER "${CPACK_PACKAGE_NAME}${CPACK_DEB_PACKAGE_COMPONENT_PART_NAME}" CPACK_DEBIAN_PACKAGE_NAME)
|
||||||
else()
|
else()
|
||||||
set(CPACK_DEB_PACKAGE_COMPONENT_PART_NAME "")
|
set(CPACK_DEB_PACKAGE_COMPONENT_PART_NAME "")
|
||||||
set(CPACK_DEB_PACKAGE_COMPONENT_PART_PATH "")
|
|
||||||
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}")
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}${CPACK_DEB_PACKAGE_COMPONENT_PART_PATH}")
|
||||||
|
|
||||||
# Print out some debug information if we were asked for that
|
# Print out some debug information if we were asked for that
|
||||||
if(CPACK_DEBIAN_PACKAGE_DEBUG)
|
if(CPACK_DEBIAN_PACKAGE_DEBUG)
|
||||||
message("CPackDeb:Debug: CPACK_TOPLEVEL_DIRECTORY = ${CPACK_TOPLEVEL_DIRECTORY}")
|
message("CPackDeb:Debug: CPACK_TOPLEVEL_DIRECTORY = ${CPACK_TOPLEVEL_DIRECTORY}")
|
||||||
|
|
|
@ -311,14 +311,12 @@ endif()
|
||||||
# Are we packaging components ?
|
# Are we packaging components ?
|
||||||
if(CPACK_RPM_PACKAGE_COMPONENT)
|
if(CPACK_RPM_PACKAGE_COMPONENT)
|
||||||
set(CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "-${CPACK_RPM_PACKAGE_COMPONENT}")
|
set(CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "-${CPACK_RPM_PACKAGE_COMPONENT}")
|
||||||
set(CPACK_RPM_PACKAGE_COMPONENT_PART_PATH "/${CPACK_RPM_PACKAGE_COMPONENT}")
|
|
||||||
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}/${CPACK_RPM_PACKAGE_COMPONENT}")
|
|
||||||
else()
|
else()
|
||||||
set(CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "")
|
set(CPACK_RPM_PACKAGE_COMPONENT_PART_NAME "")
|
||||||
set(CPACK_RPM_PACKAGE_COMPONENT_PART_PATH "")
|
|
||||||
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}")
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}${CPACK_RPM_PACKAGE_COMPONENT_PART_PATH}")
|
||||||
|
|
||||||
#
|
#
|
||||||
# Use user-defined RPM specific variables value
|
# Use user-defined RPM specific variables value
|
||||||
# or generate reasonable default value from
|
# or generate reasonable default value from
|
||||||
|
|
|
@ -0,0 +1,109 @@
|
||||||
|
##section Variables specific to CPack WiX generator
|
||||||
|
##end
|
||||||
|
##module
|
||||||
|
# - CPack WiX generator specific options
|
||||||
|
#
|
||||||
|
# The following variables are specific to the installers built
|
||||||
|
# on Windows using WiX.
|
||||||
|
##end
|
||||||
|
##variable
|
||||||
|
# CPACK_WIX_UPGRADE_GUID - Upgrade GUID (Product/@UpgradeCode)
|
||||||
|
#
|
||||||
|
# Will be automatically generated unless explicitly provided.
|
||||||
|
#
|
||||||
|
# It should be explicitly set to a constant generated
|
||||||
|
# gloabally unique identifier (GUID) to allow your installers
|
||||||
|
# to replace existing installations that use the same GUID.
|
||||||
|
#
|
||||||
|
# You may for example explicitly set this variable in
|
||||||
|
# your CMakeLists.txt to the value that has been generated per default.
|
||||||
|
# You should not use GUIDs that you did not generate yourself or which may
|
||||||
|
# belong to other projects.
|
||||||
|
#
|
||||||
|
# A GUID shall have the following fixed length syntax:
|
||||||
|
# XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
||||||
|
# (each X represents an uppercase hexadecimal digit)
|
||||||
|
##end
|
||||||
|
##variable
|
||||||
|
# CPACK_WIX_PRODUCT_GUID - Product GUID (Product/@Id)
|
||||||
|
#
|
||||||
|
# Will be automatically generated unless explicitly provided.
|
||||||
|
#
|
||||||
|
# If explicitly provided this will set the Product Id of your installer.
|
||||||
|
#
|
||||||
|
# The installer will abort if it detects a pre-existing installation that uses
|
||||||
|
# the same GUID.
|
||||||
|
#
|
||||||
|
# The GUID shall use the syntax described for CPACK_WIX_UPGRADE_GUID.
|
||||||
|
##end
|
||||||
|
##variable
|
||||||
|
# CPACK_WIX_LICENSE_RTF - RTF License File
|
||||||
|
#
|
||||||
|
# If CPACK_RESOURCE_FILE_LICENSE has an .rtf extension
|
||||||
|
# it is used as-is.
|
||||||
|
#
|
||||||
|
# If CPACK_RESOURCE_FILE_LICENSE has an .txt extension
|
||||||
|
# it is implicitly converted to RTF by the WiX Generator.
|
||||||
|
#
|
||||||
|
# With CPACK_WIX_LICENSE_RTF you can override the license file used
|
||||||
|
# by the WiX Generator in case CPACK_RESOURCE_FILE_LICENSE
|
||||||
|
# is in an unsupported format or the .txt -> .rtf
|
||||||
|
# conversion does not work as expected.
|
||||||
|
#
|
||||||
|
##end
|
||||||
|
#
|
||||||
|
##variable
|
||||||
|
# CPACK_WIX_PRODUCT_ICON - The Icon shown next to the program name in Add/Remove programs.
|
||||||
|
#
|
||||||
|
# If set, this icon is used in place of the default icon.
|
||||||
|
#
|
||||||
|
##end
|
||||||
|
#
|
||||||
|
##variable
|
||||||
|
# CPACK_WIX_UI_BANNER - The bitmap will appear at the top of all installer pages other than the welcome and completion dialogs.
|
||||||
|
#
|
||||||
|
# If set, this image will replace the default banner image.
|
||||||
|
#
|
||||||
|
# This image must be 493 by 58 pixels.
|
||||||
|
#
|
||||||
|
##end
|
||||||
|
#
|
||||||
|
##variable
|
||||||
|
# CPACK_WIX_UI_DIALOG - Background bitmap used on the welcome and completion dialogs.
|
||||||
|
#
|
||||||
|
# If this variable is set, the installer will replace the default dialog image.
|
||||||
|
#
|
||||||
|
# This image must be 493 by 312 pixels.
|
||||||
|
#
|
||||||
|
##end
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Copyright 2012 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.
|
||||||
|
#=============================================================================
|
||||||
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
|
# License text for the above reference.)
|
||||||
|
|
||||||
|
if(NOT CPACK_WIX_ROOT)
|
||||||
|
file(TO_CMAKE_PATH "$ENV{WIX}" CPACK_WIX_ROOT)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_program(CPACK_WIX_CANDLE_EXECUTABLE candle
|
||||||
|
PATHS "${CPACK_WIX_ROOT}/bin")
|
||||||
|
|
||||||
|
if(NOT CPACK_WIX_CANDLE_EXECUTABLE)
|
||||||
|
message(FATAL_ERROR "Could not find the WiX candle executable.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_program(CPACK_WIX_LIGHT_EXECUTABLE light
|
||||||
|
PATHS "${CPACK_WIX_ROOT}/bin")
|
||||||
|
|
||||||
|
if(NOT CPACK_WIX_LIGHT_EXECUTABLE)
|
||||||
|
message(FATAL_ERROR "Could not find the WiX light executable.")
|
||||||
|
endif()
|
|
@ -35,7 +35,7 @@ if(NOT DEFINED CTEST_USE_LAUNCHERS AND DEFINED ENV{CTEST_USE_LAUNCHERS_DEFAULT})
|
||||||
CACHE INTERNAL "CTEST_USE_LAUNCHERS initial value from ENV")
|
CACHE INTERNAL "CTEST_USE_LAUNCHERS initial value from ENV")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT "${CMAKE_GENERATOR}" MATCHES "Make")
|
if(NOT "${CMAKE_GENERATOR}" MATCHES "Make|Ninja")
|
||||||
set(CTEST_USE_LAUNCHERS 0)
|
set(CTEST_USE_LAUNCHERS 0)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
set(CMAKE_LIBRARY_PATH_FLAG "--search_path=")
|
||||||
|
set(CMAKE_LINK_LIBRARY_FLAG "--library=")
|
||||||
|
set(CMAKE_INCLUDE_FLAG_ASM "--include_path=")
|
||||||
|
|
||||||
|
set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_ASM_COMPILER> --compile_only --asm_file=<SOURCE> <DEFINES> <FLAGS> --output_file=<OBJECT>")
|
||||||
|
set(CMAKE_ASM_LINK_EXECUTABLE "<CMAKE_ASM_COMPILER> <OBJECTS> --run_linker --output_file=<TARGET> <CMAKE_ASM_LINK_FLAGS> <LINK_FLAGS> <LINK_LIBRARIES>")
|
||||||
|
|
||||||
|
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS asm;s;abs)
|
|
@ -0,0 +1,10 @@
|
||||||
|
set(CMAKE_LIBRARY_PATH_FLAG "--search_path=")
|
||||||
|
set(CMAKE_LINK_LIBRARY_FLAG "--library=")
|
||||||
|
set(CMAKE_INCLUDE_FLAG_C "--include_path=")
|
||||||
|
|
||||||
|
set(CMAKE_C_CREATE_ASSEMBLY_SOURCE "<CMAKE_C_COMPILER> --compile_only --skip_assembler --c_file=<SOURCE> <DEFINES> <FLAGS> --output_file=<ASSEMBLY_SOURCE>")
|
||||||
|
set(CMAKE_C_CREATE_PREPROCESSED_SOURCE "<CMAKE_C_COMPILER> --preproc_only --c_file=<SOURCE> <DEFINES> <FLAGS> --output_file=<PREPROCESSED_SOURCE>")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> --compile_only --c_file=<SOURCE> <DEFINES> <FLAGS> --output_file=<OBJECT>")
|
||||||
|
set(CMAKE_C_ARCHIVE_CREATE "<CMAKE_AR> -r <TARGET> <OBJECTS>")
|
||||||
|
set(CMAKE_C_LINK_EXECUTABLE "<CMAKE_C_COMPILER> --run_linker --output_file=<TARGET> --map_file=<TARGET>.map <CMAKE_C_LINK_FLAGS> <LINK_LIBRARIES> <LINK_FLAGS> <OBJECTS>")
|
|
@ -0,0 +1,10 @@
|
||||||
|
set(CMAKE_LIBRARY_PATH_FLAG "--search_path=")
|
||||||
|
set(CMAKE_LINK_LIBRARY_FLAG "--library=")
|
||||||
|
set(CMAKE_INCLUDE_FLAG_CXX "--include_path=")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CREATE_ASSEMBLY_SOURCE "<CMAKE_CXX_COMPILER> --compile_only --skip_assembler --cpp_file=<SOURCE> <DEFINES> <FLAGS> --output_file=<ASSEMBLY_SOURCE>")
|
||||||
|
set(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE "<CMAKE_CXX_COMPILER> --preproc_only --cpp_file=<SOURCE> <DEFINES> <FLAGS> --output_file=<PREPROCESSED_SOURCE>")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> --compile_only --cpp_file=<SOURCE> <DEFINES> <FLAGS> --output_file=<OBJECT>")
|
||||||
|
set(CMAKE_CXX_ARCHIVE_CREATE "<CMAKE_AR> -r <TARGET> <OBJECTS>")
|
||||||
|
set(CMAKE_CXX_LINK_EXECUTABLE "<CMAKE_CXX_COMPILER> --run_linker --output_file=<TARGET> --map_file=<TARGET>.map <CMAKE_CXX_LINK_FLAGS> <LINK_LIBRARIES> <LINK_FLAGS> <OBJECTS>")
|
|
@ -24,7 +24,6 @@
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
PreprocessorDefinitions=""
|
|
||||||
MinimalRebuild="false"
|
MinimalRebuild="false"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
|
@ -35,9 +34,10 @@
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
|
IgnoreDefaultLibraryNames="libc"
|
||||||
GenerateDebugInformation="false"
|
GenerateDebugInformation="false"
|
||||||
SubSystem="1"
|
SubSystem="@id_subsystem@"
|
||||||
TargetMachine="@id_machine_7@"
|
EntryPointSymbol="@id_entrypoint@"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
|
|
|
@ -80,7 +80,7 @@
|
||||||
# The functions defined in this file depend on the fixup_bundle function
|
# The functions defined in this file depend on the fixup_bundle function
|
||||||
# (and others) found in BundleUtilities.cmake
|
# (and others) found in BundleUtilities.cmake
|
||||||
|
|
||||||
include(BundleUtilities)
|
include("${CMAKE_CURRENT_LIST_DIR}/BundleUtilities.cmake")
|
||||||
set(DeployQt4_cmake_dir "${CMAKE_CURRENT_LIST_DIR}")
|
set(DeployQt4_cmake_dir "${CMAKE_CURRENT_LIST_DIR}")
|
||||||
set(DeployQt4_apple_plugins_dir "PlugIns")
|
set(DeployQt4_apple_plugins_dir "PlugIns")
|
||||||
|
|
||||||
|
|
|
@ -402,6 +402,79 @@ endif()
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
|
||||||
|
function(_ep_write_gitupdate_script script_filename git_EXECUTABLE git_tag git_repository work_dir)
|
||||||
|
file(WRITE ${script_filename}
|
||||||
|
"if(\"${git_tag}\" STREQUAL \"\")
|
||||||
|
message(FATAL_ERROR \"Tag for git checkout should not be empty.\")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
execute_process(
|
||||||
|
COMMAND \"${git_EXECUTABLE}\" rev-list --max-count=1 HEAD
|
||||||
|
WORKING_DIRECTORY \"${work_dir}\"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
OUTPUT_VARIABLE head_sha
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR \"Failed to get the hash for HEAD\")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
execute_process(
|
||||||
|
COMMAND \"${git_EXECUTABLE}\" show-ref ${git_tag}
|
||||||
|
WORKING_DIRECTORY \"${work_dir}\"
|
||||||
|
OUTPUT_VARIABLE show_ref_output
|
||||||
|
)
|
||||||
|
# If a remote ref is asked for, which can possibly move around,
|
||||||
|
# we must always do a fetch and checkout.
|
||||||
|
if(\"\${show_ref_output}\" MATCHES \"remotes\")
|
||||||
|
set(is_remote_ref 1)
|
||||||
|
else()
|
||||||
|
set(is_remote_ref 0)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# This will fail if the tag does not exist (it probably has not been fetched
|
||||||
|
# yet).
|
||||||
|
execute_process(
|
||||||
|
COMMAND \"${git_EXECUTABLE}\" rev-list --max-count=1 ${git_tag}
|
||||||
|
WORKING_DIRECTORY \"${work_dir}\"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
OUTPUT_VARIABLE tag_sha
|
||||||
|
)
|
||||||
|
|
||||||
|
# Is the hash checkout out that we want?
|
||||||
|
if(error_code OR is_remote_ref OR NOT (\"\${tag_sha}\" STREQUAL \"\${head_sha}\"))
|
||||||
|
execute_process(
|
||||||
|
COMMAND \"${git_EXECUTABLE}\" fetch
|
||||||
|
WORKING_DIRECTORY \"${work_dir}\"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR \"Failed to fetch repository '${git_repository}'\")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
execute_process(
|
||||||
|
COMMAND \"${git_EXECUTABLE}\" checkout ${git_tag}
|
||||||
|
WORKING_DIRECTORY \"${work_dir}\"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR \"Failed to checkout tag: '${git_tag}'\")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
execute_process(
|
||||||
|
COMMAND \"${git_EXECUTABLE}\" submodule update --recursive
|
||||||
|
WORKING_DIRECTORY \"${work_dir}/${src_name}\"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR \"Failed to update submodules in: '${work_dir}/${src_name}'\")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
"
|
||||||
|
)
|
||||||
|
|
||||||
|
endfunction(_ep_write_gitupdate_script)
|
||||||
|
|
||||||
function(_ep_write_downloadfile_script script_filename remote local timeout hash tls_verify tls_cainfo)
|
function(_ep_write_downloadfile_script script_filename remote local timeout hash tls_verify tls_cainfo)
|
||||||
if(timeout)
|
if(timeout)
|
||||||
set(timeout_args TIMEOUT ${timeout})
|
set(timeout_args TIMEOUT ${timeout})
|
||||||
|
@ -1354,7 +1427,7 @@ endfunction()
|
||||||
|
|
||||||
|
|
||||||
function(_ep_add_update_command name)
|
function(_ep_add_update_command name)
|
||||||
ExternalProject_Get_Property(${name} source_dir)
|
ExternalProject_Get_Property(${name} source_dir tmp_dir)
|
||||||
|
|
||||||
get_property(cmd_set TARGET ${name} PROPERTY _EP_UPDATE_COMMAND SET)
|
get_property(cmd_set TARGET ${name} PROPERTY _EP_UPDATE_COMMAND SET)
|
||||||
get_property(cmd TARGET ${name} PROPERTY _EP_UPDATE_COMMAND)
|
get_property(cmd TARGET ${name} PROPERTY _EP_UPDATE_COMMAND)
|
||||||
|
@ -1406,15 +1479,15 @@ function(_ep_add_update_command name)
|
||||||
message(FATAL_ERROR "error: could not find git for fetch of ${name}")
|
message(FATAL_ERROR "error: could not find git for fetch of ${name}")
|
||||||
endif()
|
endif()
|
||||||
set(work_dir ${source_dir})
|
set(work_dir ${source_dir})
|
||||||
set(comment "Performing update step (git fetch) for '${name}'")
|
set(comment "Performing update step for '${name}'")
|
||||||
get_property(git_tag TARGET ${name} PROPERTY _EP_GIT_TAG)
|
get_property(git_tag TARGET ${name} PROPERTY _EP_GIT_TAG)
|
||||||
if(NOT git_tag)
|
if(NOT git_tag)
|
||||||
set(git_tag "master")
|
set(git_tag "master")
|
||||||
endif()
|
endif()
|
||||||
set(cmd ${GIT_EXECUTABLE} fetch
|
_ep_write_gitupdate_script(${tmp_dir}/${name}-gitupdate.cmake
|
||||||
COMMAND ${GIT_EXECUTABLE} checkout ${git_tag}
|
${GIT_EXECUTABLE} ${git_tag} ${git_repository} ${work_dir}
|
||||||
COMMAND ${GIT_EXECUTABLE} submodule update --recursive
|
|
||||||
)
|
)
|
||||||
|
set(cmd ${CMAKE_COMMAND} -P ${tmp_dir}/${name}-gitupdate.cmake)
|
||||||
set(always 1)
|
set(always 1)
|
||||||
elseif(hg_repository)
|
elseif(hg_repository)
|
||||||
if(NOT HG_EXECUTABLE)
|
if(NOT HG_EXECUTABLE)
|
||||||
|
|
|
@ -177,7 +177,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(CMakeParseArguments)
|
include("${CMAKE_CURRENT_LIST_DIR}/CMakeParseArguments.cmake")
|
||||||
|
|
||||||
|
|
||||||
function(ADD_FEATURE_INFO _name _enabled _desc)
|
function(ADD_FEATURE_INFO _name _enabled _desc)
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
find_program(BISON_EXECUTABLE bison DOC "path to the bison executable")
|
find_program(BISON_EXECUTABLE NAMES bison win_bison DOC "path to the bison executable")
|
||||||
mark_as_advanced(BISON_EXECUTABLE)
|
mark_as_advanced(BISON_EXECUTABLE)
|
||||||
|
|
||||||
if(BISON_EXECUTABLE)
|
if(BISON_EXECUTABLE)
|
||||||
|
|
|
@ -40,8 +40,8 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(CheckFunctionExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckFunctionExists.cmake)
|
||||||
include(CheckFortranFunctionExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckFortranFunctionExists.cmake)
|
||||||
|
|
||||||
set(_blas_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES})
|
set(_blas_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES})
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ FIND_PACKAGE_HANDLE_STANDARD_ARGS(BZip2
|
||||||
VERSION_VAR BZIP2_VERSION_STRING)
|
VERSION_VAR BZIP2_VERSION_STRING)
|
||||||
|
|
||||||
if (BZIP2_FOUND)
|
if (BZIP2_FOUND)
|
||||||
include(CheckLibraryExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckLibraryExists.cmake)
|
||||||
CHECK_LIBRARY_EXISTS("${BZIP2_LIBRARIES}" BZ2_bzCompressInit "" BZIP2_NEED_PREFIX)
|
CHECK_LIBRARY_EXISTS("${BZIP2_LIBRARIES}" BZ2_bzCompressInit "" BZIP2_NEED_PREFIX)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -33,6 +33,8 @@ macro(_FIND_BULLET_LIBRARY _var)
|
||||||
${ARGN}
|
${ARGN}
|
||||||
HINTS
|
HINTS
|
||||||
${BULLET_ROOT}
|
${BULLET_ROOT}
|
||||||
|
${BULLET_ROOT}/lib/Release
|
||||||
|
${BULLET_ROOT}/lib/Debug
|
||||||
${BULLET_ROOT}/out/release8/libs
|
${BULLET_ROOT}/out/release8/libs
|
||||||
${BULLET_ROOT}/out/debug8/libs
|
${BULLET_ROOT}/out/debug8/libs
|
||||||
PATH_SUFFIXES lib
|
PATH_SUFFIXES lib
|
||||||
|
|
|
@ -28,7 +28,7 @@ find_path(CUPS_INCLUDE_DIR cups/cups.h )
|
||||||
find_library(CUPS_LIBRARIES NAMES cups )
|
find_library(CUPS_LIBRARIES NAMES cups )
|
||||||
|
|
||||||
if (CUPS_INCLUDE_DIR AND CUPS_LIBRARIES AND CUPS_REQUIRE_IPP_DELETE_ATTRIBUTE)
|
if (CUPS_INCLUDE_DIR AND CUPS_LIBRARIES AND CUPS_REQUIRE_IPP_DELETE_ATTRIBUTE)
|
||||||
include(CheckLibraryExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckLibraryExists.cmake)
|
||||||
|
|
||||||
# ippDeleteAttribute is new in cups-1.1.19 (and used by kdeprint)
|
# ippDeleteAttribute is new in cups-1.1.19 (and used by kdeprint)
|
||||||
CHECK_LIBRARY_EXISTS(cups ippDeleteAttribute "" CUPS_HAS_IPP_DELETE_ATTRIBUTE)
|
CHECK_LIBRARY_EXISTS(cups ippDeleteAttribute "" CUPS_HAS_IPP_DELETE_ATTRIBUTE)
|
||||||
|
|
|
@ -56,7 +56,7 @@ endif()
|
||||||
# prefix as the library was found, if still not found, try curses.h with the
|
# prefix as the library was found, if still not found, try curses.h with the
|
||||||
# default search paths.
|
# default search paths.
|
||||||
if(CURSES_CURSES_LIBRARY AND CURSES_NEED_NCURSES)
|
if(CURSES_CURSES_LIBRARY AND CURSES_NEED_NCURSES)
|
||||||
include(CheckLibraryExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckLibraryExists.cmake)
|
||||||
CHECK_LIBRARY_EXISTS("${CURSES_CURSES_LIBRARY}"
|
CHECK_LIBRARY_EXISTS("${CURSES_CURSES_LIBRARY}"
|
||||||
wsyncup "" CURSES_CURSES_HAS_WSYNCUP)
|
wsyncup "" CURSES_CURSES_HAS_WSYNCUP)
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
find_program(FLEX_EXECUTABLE flex DOC "path to the flex executable")
|
find_program(FLEX_EXECUTABLE NAMES flex win_flex DOC "path to the flex executable")
|
||||||
mark_as_advanced(FLEX_EXECUTABLE)
|
mark_as_advanced(FLEX_EXECUTABLE)
|
||||||
|
|
||||||
find_library(FL_LIBRARY NAMES fl
|
find_library(FL_LIBRARY NAMES fl
|
||||||
|
@ -93,10 +93,12 @@ if(FLEX_EXECUTABLE)
|
||||||
else()
|
else()
|
||||||
# older versions of flex printed "/full/path/to/executable version X.Y"
|
# older versions of flex printed "/full/path/to/executable version X.Y"
|
||||||
# newer versions use "basename(executable) X.Y"
|
# newer versions use "basename(executable) X.Y"
|
||||||
get_filename_component(FLEX_EXE_NAME "${FLEX_EXECUTABLE}" NAME)
|
get_filename_component(FLEX_EXE_NAME_WE "${FLEX_EXECUTABLE}" NAME_WE)
|
||||||
string(REGEX REPLACE "^.*${FLEX_EXE_NAME}\"? (version )?([0-9]+[^ ]*)( .*)?$" "\\2"
|
get_filename_component(FLEX_EXE_EXT "${FLEX_EXECUTABLE}" EXT)
|
||||||
|
string(REGEX REPLACE "^.*${FLEX_EXE_NAME_WE}(${FLEX_EXE_EXT})?\"? (version )?([0-9]+[^ ]*)( .*)?$" "\\3"
|
||||||
FLEX_VERSION "${FLEX_version_output}")
|
FLEX_VERSION "${FLEX_version_output}")
|
||||||
unset(FLEX_EXE_NAME)
|
unset(FLEX_EXE_EXT)
|
||||||
|
unset(FLEX_EXE_NAME_WE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
#============================================================
|
#============================================================
|
||||||
|
|
|
@ -58,7 +58,7 @@ if(WIN32)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(UNIX)
|
if(UNIX)
|
||||||
include(FindX11)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindX11.cmake)
|
||||||
find_library(FLTK_MATH_LIBRARY m)
|
find_library(FLTK_MATH_LIBRARY m)
|
||||||
set( FLTK_PLATFORM_DEPENDENT_LIBS ${X11_LIBRARIES} ${FLTK_MATH_LIBRARY})
|
set( FLTK_PLATFORM_DEPENDENT_LIBS ${X11_LIBRARIES} ${FLTK_MATH_LIBRARY})
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -46,6 +46,7 @@ find_path(FREETYPE_INCLUDE_DIR_ft2build ft2build.h
|
||||||
HINTS
|
HINTS
|
||||||
ENV FREETYPE_DIR
|
ENV FREETYPE_DIR
|
||||||
PATHS
|
PATHS
|
||||||
|
/usr/X11R6
|
||||||
/usr/local/X11R6
|
/usr/local/X11R6
|
||||||
/usr/local/X11
|
/usr/local/X11
|
||||||
/usr/freeware
|
/usr/freeware
|
||||||
|
@ -56,6 +57,7 @@ find_path(FREETYPE_INCLUDE_DIR_freetype2 freetype/config/ftheader.h
|
||||||
HINTS
|
HINTS
|
||||||
ENV FREETYPE_DIR
|
ENV FREETYPE_DIR
|
||||||
PATHS
|
PATHS
|
||||||
|
/usr/X11R6
|
||||||
/usr/local/X11R6
|
/usr/local/X11R6
|
||||||
/usr/local/X11
|
/usr/local/X11
|
||||||
/usr/freeware
|
/usr/freeware
|
||||||
|
@ -68,6 +70,7 @@ find_library(FREETYPE_LIBRARY
|
||||||
ENV FREETYPE_DIR
|
ENV FREETYPE_DIR
|
||||||
PATH_SUFFIXES lib
|
PATH_SUFFIXES lib
|
||||||
PATHS
|
PATHS
|
||||||
|
/usr/X11R6
|
||||||
/usr/local/X11R6
|
/usr/local/X11R6
|
||||||
/usr/local/X11
|
/usr/local/X11
|
||||||
/usr/freeware
|
/usr/freeware
|
||||||
|
|
|
@ -58,8 +58,8 @@ set(GIF_LIBRARIES ${GIF_LIBRARY})
|
||||||
# one.
|
# one.
|
||||||
# http://giflib.sourcearchive.com/documentation/4.1.4/files.html
|
# http://giflib.sourcearchive.com/documentation/4.1.4/files.html
|
||||||
if(GIF_INCLUDE_DIR)
|
if(GIF_INCLUDE_DIR)
|
||||||
include(CMakePushCheckState)
|
include(${CMAKE_CURRENT_LIST_DIR}/CMakePushCheckState.cmake)
|
||||||
include(CheckStructHasMember)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckStructHasMember.cmake)
|
||||||
CMAKE_PUSH_CHECK_STATE()
|
CMAKE_PUSH_CHECK_STATE()
|
||||||
set(GIF_VERSION 3)
|
set(GIF_VERSION 3)
|
||||||
set(CMAKE_REQUIRED_INCLUDES "${GIF_INCLUDE_DIR}")
|
set(CMAKE_REQUIRED_INCLUDES "${GIF_INCLUDE_DIR}")
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
message(STATUS
|
message(STATUS
|
||||||
"WARNING: you are using the obsolete 'GLU' package, please use 'OpenGL' instead")
|
"WARNING: you are using the obsolete 'GLU' package, please use 'OpenGL' instead")
|
||||||
|
|
||||||
include(FindOpenGL)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindOpenGL.cmake)
|
||||||
|
|
||||||
if (OPENGL_GLU_FOUND)
|
if (OPENGL_GLU_FOUND)
|
||||||
set (GLU_LIBRARY ${OPENGL_LIBRARIES})
|
set (GLU_LIBRARY ${OPENGL_LIBRARIES})
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(FindCygwin)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
||||||
|
|
||||||
find_program(GNUPLOT_EXECUTABLE
|
find_program(GNUPLOT_EXECUTABLE
|
||||||
NAMES
|
NAMES
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
|
|
||||||
# This module is maintained by Will Dicharry <wdicharry@stellarscience.com>.
|
# This module is maintained by Will Dicharry <wdicharry@stellarscience.com>.
|
||||||
|
|
||||||
include(SelectLibraryConfigurations)
|
include(${CMAKE_CURRENT_LIST_DIR}/SelectLibraryConfigurations.cmake)
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
|
||||||
# List of the valid HDF5 components
|
# List of the valid HDF5 components
|
||||||
|
|
|
@ -0,0 +1,56 @@
|
||||||
|
# - Find icotool
|
||||||
|
# This module looks for icotool. This module defines the
|
||||||
|
# following values:
|
||||||
|
# ICOTOOL_EXECUTABLE: the full path to the icotool tool.
|
||||||
|
# ICOTOOL_FOUND: True if icotool has been found.
|
||||||
|
# ICOTOOL_VERSION_STRING: the version of icotool found.
|
||||||
|
#
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Copyright 2012 Aleksey Avdeev <solo@altlinux.ru>
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#=============================================================================
|
||||||
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
|
# License text for the above reference.)
|
||||||
|
|
||||||
|
find_program(ICOTOOL_EXECUTABLE
|
||||||
|
icotool
|
||||||
|
)
|
||||||
|
|
||||||
|
if(ICOTOOL_EXECUTABLE)
|
||||||
|
execute_process(
|
||||||
|
COMMAND ${ICOTOOL_EXECUTABLE} --version
|
||||||
|
OUTPUT_VARIABLE _icotool_version
|
||||||
|
ERROR_QUIET
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
|
)
|
||||||
|
if("${_icotool_version}" MATCHES "^icotool \\([^\\)]*\\) ([0-9\\.]+[^ \n]*).*")
|
||||||
|
set( ICOTOOL_VERSION_STRING
|
||||||
|
"${CMAKE_MATCH_1}"
|
||||||
|
)
|
||||||
|
else()
|
||||||
|
set( ICOTOOL_VERSION_STRING
|
||||||
|
""
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
unset(_icotool_version)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# handle the QUIETLY and REQUIRED arguments and set ICOTOOL_FOUND to TRUE if
|
||||||
|
# all listed variables are TRUE
|
||||||
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(
|
||||||
|
Icotool
|
||||||
|
REQUIRED_VARS ICOTOOL_EXECUTABLE
|
||||||
|
VERSION_VAR ICOTOOL_VERSION_STRING
|
||||||
|
)
|
||||||
|
|
||||||
|
mark_as_advanced(
|
||||||
|
ICOTOOL_EXECUTABLE
|
||||||
|
)
|
|
@ -120,6 +120,11 @@ JAVA_APPEND_LIBRARY_DIRECTORIES(JAVA_AWT_LIBRARY_DIRECTORIES
|
||||||
/usr/lib/jvm/default-java/jre/lib/{libarch}
|
/usr/lib/jvm/default-java/jre/lib/{libarch}
|
||||||
/usr/lib/jvm/default-java/jre/lib
|
/usr/lib/jvm/default-java/jre/lib
|
||||||
/usr/lib/jvm/default-java/lib
|
/usr/lib/jvm/default-java/lib
|
||||||
|
# OpenBSD specific paths for default JVM
|
||||||
|
/usr/local/jdk-1.7.0/jre/lib/{libarch}
|
||||||
|
/usr/local/jre-1.7.0/lib/{libarch}
|
||||||
|
/usr/local/jdk-1.6.0/jre/lib/{libarch}
|
||||||
|
/usr/local/jre-1.6.0/lib/{libarch}
|
||||||
)
|
)
|
||||||
|
|
||||||
set(JAVA_JVM_LIBRARY_DIRECTORIES)
|
set(JAVA_JVM_LIBRARY_DIRECTORIES)
|
||||||
|
@ -153,6 +158,9 @@ set(JAVA_AWT_INCLUDE_DIRECTORIES
|
||||||
/opt/sun-jdk-1.5.0.04/include
|
/opt/sun-jdk-1.5.0.04/include
|
||||||
# Debian specific path for default JVM
|
# Debian specific path for default JVM
|
||||||
/usr/lib/jvm/default-java/include
|
/usr/lib/jvm/default-java/include
|
||||||
|
# OpenBSD specific path for default JVM
|
||||||
|
/usr/local/jdk-1.7.0/include
|
||||||
|
/usr/local/jdk-1.6.0/include
|
||||||
)
|
)
|
||||||
|
|
||||||
foreach(JAVA_PROG "${JAVA_RUNTIME}" "${JAVA_COMPILE}" "${JAVA_ARCHIVE}")
|
foreach(JAVA_PROG "${JAVA_RUNTIME}" "${JAVA_COMPILE}" "${JAVA_ARCHIVE}")
|
||||||
|
@ -227,6 +235,7 @@ find_path(JAVA_INCLUDE_PATH2 jni_md.h
|
||||||
${JAVA_INCLUDE_PATH}/win32
|
${JAVA_INCLUDE_PATH}/win32
|
||||||
${JAVA_INCLUDE_PATH}/linux
|
${JAVA_INCLUDE_PATH}/linux
|
||||||
${JAVA_INCLUDE_PATH}/freebsd
|
${JAVA_INCLUDE_PATH}/freebsd
|
||||||
|
${JAVA_INCLUDE_PATH}/openbsd
|
||||||
${JAVA_INCLUDE_PATH}/solaris
|
${JAVA_INCLUDE_PATH}/solaris
|
||||||
${JAVA_INCLUDE_PATH}/hp-ux
|
${JAVA_INCLUDE_PATH}/hp-ux
|
||||||
${JAVA_INCLUDE_PATH}/alpha
|
${JAVA_INCLUDE_PATH}/alpha
|
||||||
|
|
|
@ -80,6 +80,8 @@ set(_JAVA_PATHS
|
||||||
/usr/java/j2sdk1.4.2_09/bin
|
/usr/java/j2sdk1.4.2_09/bin
|
||||||
/usr/lib/j2sdk1.5-sun/bin
|
/usr/lib/j2sdk1.5-sun/bin
|
||||||
/opt/sun-jdk-1.5.0.04/bin
|
/opt/sun-jdk-1.5.0.04/bin
|
||||||
|
/usr/local/jdk-1.7.0/bin
|
||||||
|
/usr/local/jdk-1.6.0/bin
|
||||||
)
|
)
|
||||||
find_program(Java_JAVA_EXECUTABLE
|
find_program(Java_JAVA_EXECUTABLE
|
||||||
NAMES java
|
NAMES java
|
||||||
|
@ -107,6 +109,7 @@ if(Java_JAVA_EXECUTABLE)
|
||||||
# 2. OpenJDK 1.6
|
# 2. OpenJDK 1.6
|
||||||
# 3. GCJ 1.5
|
# 3. GCJ 1.5
|
||||||
# 4. Kaffe 1.4.2
|
# 4. Kaffe 1.4.2
|
||||||
|
# 5. OpenJDK 1.7.x on OpenBSD
|
||||||
if(var MATCHES "java version \"[0-9]+\\.[0-9]+\\.[0-9_.]+.*\".*")
|
if(var MATCHES "java version \"[0-9]+\\.[0-9]+\\.[0-9_.]+.*\".*")
|
||||||
# This is most likely Sun / OpenJDK, or maybe GCJ-java compat layer
|
# This is most likely Sun / OpenJDK, or maybe GCJ-java compat layer
|
||||||
string( REGEX REPLACE ".* version \"([0-9]+\\.[0-9]+\\.[0-9_.]+.*)\".*"
|
string( REGEX REPLACE ".* version \"([0-9]+\\.[0-9]+\\.[0-9_.]+.*)\".*"
|
||||||
|
@ -115,6 +118,10 @@ if(Java_JAVA_EXECUTABLE)
|
||||||
# Kaffe style
|
# Kaffe style
|
||||||
string( REGEX REPLACE "java full version \"kaffe-([0-9]+\\.[0-9]+\\.[0-9_]+).*"
|
string( REGEX REPLACE "java full version \"kaffe-([0-9]+\\.[0-9]+\\.[0-9_]+).*"
|
||||||
"\\1" Java_VERSION_STRING "${var}" )
|
"\\1" Java_VERSION_STRING "${var}" )
|
||||||
|
elseif(var MATCHES "openjdk version \"[0-9]+\\.[0-9]+\\.[0-9_]+\".*")
|
||||||
|
# OpenJDK ver 1.7.x on OpenBSD
|
||||||
|
string( REGEX REPLACE "openjdk version \"([0-9]+\\.[0-9]+\\.[0-9_]+).*"
|
||||||
|
"\\1" Java_VERSION_STRING "${var}" )
|
||||||
else()
|
else()
|
||||||
if(NOT Java_FIND_QUIETLY)
|
if(NOT Java_FIND_QUIETLY)
|
||||||
message(WARNING "regex not supported: ${var}. Please report")
|
message(WARNING "regex not supported: ${var}. Please report")
|
||||||
|
|
|
@ -245,7 +245,7 @@ endif()
|
||||||
|
|
||||||
|
|
||||||
# KDE3Macros.cmake contains all the KDE specific macros
|
# KDE3Macros.cmake contains all the KDE specific macros
|
||||||
include(KDE3Macros)
|
include(${CMAKE_CURRENT_LIST_DIR}/KDE3Macros.cmake)
|
||||||
|
|
||||||
|
|
||||||
macro (KDE3_PRINT_RESULTS)
|
macro (KDE3_PRINT_RESULTS)
|
||||||
|
|
|
@ -40,9 +40,9 @@ set(_lapack_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES})
|
||||||
|
|
||||||
get_property(_LANGUAGES_ GLOBAL PROPERTY ENABLED_LANGUAGES)
|
get_property(_LANGUAGES_ GLOBAL PROPERTY ENABLED_LANGUAGES)
|
||||||
if (NOT _LANGUAGES_ MATCHES Fortran)
|
if (NOT _LANGUAGES_ MATCHES Fortran)
|
||||||
include(CheckFunctionExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckFunctionExists.cmake)
|
||||||
else ()
|
else ()
|
||||||
include(CheckFortranFunctionExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckFortranFunctionExists.cmake)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
set(LAPACK_FOUND FALSE)
|
set(LAPACK_FOUND FALSE)
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
find_path(LUA_INCLUDE_DIR lua.h
|
find_path(LUA_INCLUDE_DIR lua.h
|
||||||
HINTS
|
HINTS
|
||||||
ENV LUA_DIR
|
ENV LUA_DIR
|
||||||
PATH_SUFFIXES include/lua51 include/lua5.1 include/lua include
|
PATH_SUFFIXES include/lua51 include/lua5.1 include/lua-5.1 include/lua include
|
||||||
PATHS
|
PATHS
|
||||||
~/Library/Frameworks
|
~/Library/Frameworks
|
||||||
/Library/Frameworks
|
/Library/Frameworks
|
||||||
|
|
|
@ -45,7 +45,7 @@ if(MPEG2_FOUND)
|
||||||
|
|
||||||
#some native mpeg2 installations will depend
|
#some native mpeg2 installations will depend
|
||||||
#on libSDL, if found, add it in.
|
#on libSDL, if found, add it in.
|
||||||
include( FindSDL )
|
include(${CMAKE_CURRENT_LIST_DIR}/FindSDL.cmake)
|
||||||
if(SDL_FOUND)
|
if(SDL_FOUND)
|
||||||
set( MPEG2_LIBRARIES ${MPEG2_LIBRARIES} ${SDL_LIBRARY})
|
set( MPEG2_LIBRARIES ${MPEG2_LIBRARIES} ${SDL_LIBRARY})
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -78,7 +78,7 @@
|
||||||
|
|
||||||
# include this to handle the QUIETLY and REQUIRED arguments
|
# include this to handle the QUIETLY and REQUIRED arguments
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
include(GetPrerequisites)
|
include(${CMAKE_CURRENT_LIST_DIR}/GetPrerequisites.cmake)
|
||||||
|
|
||||||
#
|
#
|
||||||
# This part detects MPI compilers, attempting to wade through the mess of compiler names in
|
# This part detects MPI compilers, attempting to wade through the mess of compiler names in
|
||||||
|
|
|
@ -103,7 +103,7 @@ else ()
|
||||||
|
|
||||||
if (OPENGL_gl_LIBRARY)
|
if (OPENGL_gl_LIBRARY)
|
||||||
if(NOT X11_FOUND)
|
if(NOT X11_FOUND)
|
||||||
include(FindX11)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindX11.cmake)
|
||||||
endif()
|
endif()
|
||||||
if (X11_FOUND)
|
if (X11_FOUND)
|
||||||
if (NOT APPLE)
|
if (NOT APPLE)
|
||||||
|
|
|
@ -95,7 +95,7 @@ if(CMAKE_C_COMPILER_LOADED)
|
||||||
unset(OpenMP_C_FLAG_CANDIDATES)
|
unset(OpenMP_C_FLAG_CANDIDATES)
|
||||||
else()
|
else()
|
||||||
_OPENMP_FLAG_CANDIDATES("C")
|
_OPENMP_FLAG_CANDIDATES("C")
|
||||||
include(CheckCSourceCompiles)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckCSourceCompiles.cmake)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
foreach(FLAG ${OpenMP_C_FLAG_CANDIDATES})
|
foreach(FLAG ${OpenMP_C_FLAG_CANDIDATES})
|
||||||
|
@ -126,7 +126,7 @@ if(CMAKE_CXX_COMPILER_LOADED)
|
||||||
unset(OpenMP_CXX_FLAG_CANDIDATES)
|
unset(OpenMP_CXX_FLAG_CANDIDATES)
|
||||||
else()
|
else()
|
||||||
_OPENMP_FLAG_CANDIDATES("CXX")
|
_OPENMP_FLAG_CANDIDATES("CXX")
|
||||||
include(CheckCXXSourceCompiles)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckCXXSourceCompiles.cmake)
|
||||||
|
|
||||||
# use the same source for CXX as C for now
|
# use the same source for CXX as C for now
|
||||||
set(OpenMP_CXX_TEST_SOURCE ${OpenMP_C_TEST_SOURCE})
|
set(OpenMP_CXX_TEST_SOURCE ${OpenMP_C_TEST_SOURCE})
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
# Output variables of the form OPENSCENEGRAPH_FOO
|
# Output variables of the form OPENSCENEGRAPH_FOO
|
||||||
#
|
#
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
|
|
||||||
set(_osg_modules_to_process)
|
set(_osg_modules_to_process)
|
||||||
foreach(_osg_component ${OpenSceneGraph_FIND_COMPONENTS})
|
foreach(_osg_component ${OpenSceneGraph_FIND_COMPONENTS})
|
||||||
|
|
|
@ -88,8 +88,8 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(FindPackageMessage)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake)
|
||||||
include(CMakeParseArguments)
|
include(${CMAKE_CURRENT_LIST_DIR}/CMakeParseArguments.cmake)
|
||||||
|
|
||||||
# internal helper macro
|
# internal helper macro
|
||||||
macro(_FPHSA_FAILURE_MESSAGE _msg)
|
macro(_FPHSA_FAILURE_MESSAGE _msg)
|
||||||
|
@ -187,8 +187,8 @@ function(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG)
|
||||||
# user knows better what went wrong (#6375)
|
# user knows better what went wrong (#6375)
|
||||||
set(MISSING_VARS "")
|
set(MISSING_VARS "")
|
||||||
set(DETAILS "")
|
set(DETAILS "")
|
||||||
set(${_NAME_UPPER}_FOUND TRUE)
|
|
||||||
# check if all passed variables are valid
|
# check if all passed variables are valid
|
||||||
|
unset(${_NAME_UPPER}_FOUND)
|
||||||
foreach(_CURRENT_VAR ${FPHSA_REQUIRED_VARS})
|
foreach(_CURRENT_VAR ${FPHSA_REQUIRED_VARS})
|
||||||
if(NOT ${_CURRENT_VAR})
|
if(NOT ${_CURRENT_VAR})
|
||||||
set(${_NAME_UPPER}_FOUND FALSE)
|
set(${_NAME_UPPER}_FOUND FALSE)
|
||||||
|
@ -197,6 +197,9 @@ function(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG)
|
||||||
set(DETAILS "${DETAILS}[${${_CURRENT_VAR}}]")
|
set(DETAILS "${DETAILS}[${${_CURRENT_VAR}}]")
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
if(NOT "${${_NAME_UPPER}_FOUND}" STREQUAL "FALSE")
|
||||||
|
set(${_NAME_UPPER}_FOUND TRUE)
|
||||||
|
endif()
|
||||||
|
|
||||||
# component handling
|
# component handling
|
||||||
unset(FOUND_COMPONENTS_MSG)
|
unset(FOUND_COMPONENTS_MSG)
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(FindCygwin)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
||||||
|
|
||||||
set(PERL_POSSIBLE_BIN_PATHS
|
set(PERL_POSSIBLE_BIN_PATHS
|
||||||
${CYGWIN_INSTALL_PATH}/bin
|
${CYGWIN_INSTALL_PATH}/bin
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
# find the perl executable
|
# find the perl executable
|
||||||
include(FindPerl)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPerl.cmake)
|
||||||
|
|
||||||
if (PERL_EXECUTABLE)
|
if (PERL_EXECUTABLE)
|
||||||
### PERL_PREFIX
|
### PERL_PREFIX
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(CMakeFindFrameworks)
|
include(${CMAKE_CURRENT_LIST_DIR}/CMakeFindFrameworks.cmake)
|
||||||
# Search for the python framework on Apple.
|
# Search for the python framework on Apple.
|
||||||
CMAKE_FIND_FRAMEWORKS(Python)
|
CMAKE_FIND_FRAMEWORKS(Python)
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
# look for signs of qt3 installations
|
# look for signs of qt3 installations
|
||||||
file(GLOB GLOB_TEMP_VAR /usr/lib/qt-3*/bin/qmake)
|
file(GLOB GLOB_TEMP_VAR /usr/lib*/qt-3*/bin/qmake /usr/lib*/qt3*/bin/qmake)
|
||||||
if(GLOB_TEMP_VAR)
|
if(GLOB_TEMP_VAR)
|
||||||
set(QT3_INSTALLED TRUE)
|
set(QT3_INSTALLED TRUE)
|
||||||
endif()
|
endif()
|
||||||
|
@ -43,6 +43,12 @@ if(GLOB_TEMP_VAR)
|
||||||
endif()
|
endif()
|
||||||
set(GLOB_TEMP_VAR)
|
set(GLOB_TEMP_VAR)
|
||||||
|
|
||||||
|
file(GLOB GLOB_TEMP_VAR /usr/local/lib/qt3/bin/qmake)
|
||||||
|
if(GLOB_TEMP_VAR)
|
||||||
|
set(QT3_INSTALLED TRUE)
|
||||||
|
endif()
|
||||||
|
set(GLOB_TEMP_VAR)
|
||||||
|
|
||||||
# look for qt4 installations
|
# look for qt4 installations
|
||||||
file(GLOB GLOB_TEMP_VAR /usr/local/qt-x11-commercial-4*/bin/qmake)
|
file(GLOB GLOB_TEMP_VAR /usr/local/qt-x11-commercial-4*/bin/qmake)
|
||||||
if(GLOB_TEMP_VAR)
|
if(GLOB_TEMP_VAR)
|
||||||
|
@ -56,6 +62,16 @@ if(GLOB_TEMP_VAR)
|
||||||
endif()
|
endif()
|
||||||
set(GLOB_TEMP_VAR)
|
set(GLOB_TEMP_VAR)
|
||||||
|
|
||||||
|
file(GLOB GLOB_TEMP_VAR /usr/local/lib/qt4/bin/qmake)
|
||||||
|
if(GLOB_TEMP_VAR)
|
||||||
|
set(QT4_INSTALLED TRUE)
|
||||||
|
endif()
|
||||||
|
set(GLOB_TEMP_VAR)
|
||||||
|
|
||||||
|
if (Qt_FIND_VERSION)
|
||||||
|
set(DESIRED_QT_VERSION "${Qt_FIND_VERSION}")
|
||||||
|
endif ()
|
||||||
|
|
||||||
# now find qmake
|
# now find qmake
|
||||||
find_program(QT_QMAKE_EXECUTABLE_FINDQT NAMES qmake PATHS "${QT_SEARCH_PATH}/bin" "$ENV{QTDIR}/bin")
|
find_program(QT_QMAKE_EXECUTABLE_FINDQT NAMES qmake PATHS "${QT_SEARCH_PATH}/bin" "$ENV{QTDIR}/bin")
|
||||||
if(QT_QMAKE_EXECUTABLE_FINDQT)
|
if(QT_QMAKE_EXECUTABLE_FINDQT)
|
||||||
|
@ -87,6 +103,7 @@ find_file( QT4_QGLOBAL_H_FILE qglobal.h
|
||||||
/usr/lib/qt/include/Qt
|
/usr/lib/qt/include/Qt
|
||||||
/usr/include/Qt
|
/usr/include/Qt
|
||||||
/usr/share/qt4/include/Qt
|
/usr/share/qt4/include/Qt
|
||||||
|
/usr/local/include/X11/qt4/Qt
|
||||||
C:/Progra~1/qt/include/Qt )
|
C:/Progra~1/qt/include/Qt )
|
||||||
|
|
||||||
if(QT4_QGLOBAL_H_FILE)
|
if(QT4_QGLOBAL_H_FILE)
|
||||||
|
@ -106,6 +123,7 @@ find_file( QT3_QGLOBAL_H_FILE qglobal.h
|
||||||
/usr/lib/qt/include
|
/usr/lib/qt/include
|
||||||
/usr/include
|
/usr/include
|
||||||
/usr/share/qt3/include
|
/usr/share/qt3/include
|
||||||
|
/usr/local/include/X11/qt3
|
||||||
C:/Progra~1/qt/include
|
C:/Progra~1/qt/include
|
||||||
/usr/include/qt3 )
|
/usr/include/qt3 )
|
||||||
|
|
||||||
|
@ -113,15 +131,15 @@ if(QT3_QGLOBAL_H_FILE)
|
||||||
set(QT3_INSTALLED TRUE)
|
set(QT3_INSTALLED TRUE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(QT3_INSTALLED AND QT4_INSTALLED )
|
if(QT3_INSTALLED AND QT4_INSTALLED AND NOT DESIRED_QT_VERSION)
|
||||||
# force user to pick if we have both
|
# force user to pick if we have both
|
||||||
set(DESIRED_QT_VERSION 0 CACHE STRING "Pick a version of Qt to use: 3 or 4")
|
set(DESIRED_QT_VERSION 0 CACHE STRING "Pick a version of Qt to use: 3 or 4")
|
||||||
else()
|
else()
|
||||||
# if only one found then pick that one
|
# if only one found then pick that one
|
||||||
if(QT3_INSTALLED)
|
if(QT3_INSTALLED AND NOT DESIRED_QT_VERSION EQUAL 4)
|
||||||
set(DESIRED_QT_VERSION 3 CACHE STRING "Pick a version of Qt to use: 3 or 4")
|
set(DESIRED_QT_VERSION 3 CACHE STRING "Pick a version of Qt to use: 3 or 4")
|
||||||
endif()
|
endif()
|
||||||
if(QT4_INSTALLED)
|
if(QT4_INSTALLED AND NOT DESIRED_QT_VERSION EQUAL 3)
|
||||||
set(DESIRED_QT_VERSION 4 CACHE STRING "Pick a version of Qt to use: 3 or 4")
|
set(DESIRED_QT_VERSION 4 CACHE STRING "Pick a version of Qt to use: 3 or 4")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
@ -129,12 +147,12 @@ endif()
|
||||||
if(DESIRED_QT_VERSION MATCHES 3)
|
if(DESIRED_QT_VERSION MATCHES 3)
|
||||||
set(Qt3_FIND_REQUIRED ${Qt_FIND_REQUIRED})
|
set(Qt3_FIND_REQUIRED ${Qt_FIND_REQUIRED})
|
||||||
set(Qt3_FIND_QUIETLY ${Qt_FIND_QUIETLY})
|
set(Qt3_FIND_QUIETLY ${Qt_FIND_QUIETLY})
|
||||||
include(FindQt3)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindQt3.cmake)
|
||||||
endif()
|
endif()
|
||||||
if(DESIRED_QT_VERSION MATCHES 4)
|
if(DESIRED_QT_VERSION MATCHES 4)
|
||||||
set(Qt4_FIND_REQUIRED ${Qt_FIND_REQUIRED})
|
set(Qt4_FIND_REQUIRED ${Qt_FIND_REQUIRED})
|
||||||
set(Qt4_FIND_QUIETLY ${Qt_FIND_QUIETLY})
|
set(Qt4_FIND_QUIETLY ${Qt_FIND_QUIETLY})
|
||||||
include(FindQt4)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindQt4.cmake)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT QT3_INSTALLED AND NOT QT4_INSTALLED)
|
if(NOT QT3_INSTALLED AND NOT QT4_INSTALLED)
|
||||||
|
|
|
@ -64,6 +64,7 @@ find_path(QT_INCLUDE_DIR qt.h
|
||||||
/usr/share/qt3/include
|
/usr/share/qt3/include
|
||||||
C:/Progra~1/qt/include
|
C:/Progra~1/qt/include
|
||||||
/usr/include/qt3
|
/usr/include/qt3
|
||||||
|
/usr/local/include/X11/qt3
|
||||||
)
|
)
|
||||||
|
|
||||||
# if qglobal.h is not in the qt_include_dir then set
|
# if qglobal.h is not in the qt_include_dir then set
|
||||||
|
@ -146,7 +147,7 @@ find_library(QT_QASSISTANTCLIENT_LIBRARY
|
||||||
|
|
||||||
# Qt 3 should prefer QTDIR over the PATH
|
# Qt 3 should prefer QTDIR over the PATH
|
||||||
find_program(QT_MOC_EXECUTABLE
|
find_program(QT_MOC_EXECUTABLE
|
||||||
NAMES moc-qt3 moc
|
NAMES moc-qt3 moc moc3 moc3-mt
|
||||||
HINTS
|
HINTS
|
||||||
ENV QTDIR
|
ENV QTDIR
|
||||||
PATHS
|
PATHS
|
||||||
|
@ -154,6 +155,7 @@ find_program(QT_MOC_EXECUTABLE
|
||||||
"[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\3.2.0;InstallDir]/include/Qt"
|
"[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\3.2.0;InstallDir]/include/Qt"
|
||||||
"[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\3.1.0;InstallDir]/include/Qt"
|
"[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\3.1.0;InstallDir]/include/Qt"
|
||||||
${GLOB_PATHS_BIN}
|
${GLOB_PATHS_BIN}
|
||||||
|
/usr/local/lib/qt3
|
||||||
/usr/local/qt
|
/usr/local/qt
|
||||||
/usr/lib/qt
|
/usr/lib/qt
|
||||||
/usr/lib/qt3
|
/usr/lib/qt3
|
||||||
|
@ -170,7 +172,7 @@ endif()
|
||||||
|
|
||||||
# Qt 3 should prefer QTDIR over the PATH
|
# Qt 3 should prefer QTDIR over the PATH
|
||||||
find_program(QT_UIC_EXECUTABLE
|
find_program(QT_UIC_EXECUTABLE
|
||||||
NAMES uic-qt3 uic
|
NAMES uic-qt3 uic uic3 uic3-mt
|
||||||
HINTS
|
HINTS
|
||||||
ENV QTDIR
|
ENV QTDIR
|
||||||
PATHS
|
PATHS
|
||||||
|
|
|
@ -65,6 +65,10 @@
|
||||||
# is much more flexible, but requires that FindQt4.cmake is executed before
|
# is much more flexible, but requires that FindQt4.cmake is executed before
|
||||||
# such an exported dependency file is processed.
|
# such an exported dependency file is processed.
|
||||||
#
|
#
|
||||||
|
# QT_INCLUDE_DIRS_NO_SYSTEM
|
||||||
|
# If this variable is set to TRUE, the Qt include directories
|
||||||
|
# in the QT_USE_FILE will NOT have the SYSTEM keyword set.
|
||||||
|
#
|
||||||
# There are also some files that need processing by some Qt tools such as moc
|
# There are also some files that need processing by some Qt tools such as moc
|
||||||
# and uic. Listed below are macros that may be used to process those files.
|
# and uic. Listed below are macros that may be used to process those files.
|
||||||
#
|
#
|
||||||
|
@ -376,8 +380,8 @@ if(QT_QT_LIBRARY)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
include(CheckCXXSymbolExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckCXXSymbolExists.cmake)
|
||||||
include(MacroAddFileDependencies)
|
include(${CMAKE_CURRENT_LIST_DIR}/MacroAddFileDependencies.cmake)
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
|
||||||
set(QT_USE_FILE ${CMAKE_ROOT}/Modules/UseQt4.cmake)
|
set(QT_USE_FILE ${CMAKE_ROOT}/Modules/UseQt4.cmake)
|
||||||
|
@ -982,13 +986,13 @@ if (QT_QMAKE_EXECUTABLE AND QTVERSION)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_program(QT_MOC_EXECUTABLE
|
find_program(QT_MOC_EXECUTABLE
|
||||||
NAMES moc-qt4 moc
|
NAMES moc-qt4 moc moc4
|
||||||
PATHS ${QT_BINARY_DIR}
|
PATHS ${QT_BINARY_DIR}
|
||||||
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
||||||
)
|
)
|
||||||
|
|
||||||
find_program(QT_UIC_EXECUTABLE
|
find_program(QT_UIC_EXECUTABLE
|
||||||
NAMES uic-qt4 uic
|
NAMES uic-qt4 uic uic4
|
||||||
PATHS ${QT_BINARY_DIR}
|
PATHS ${QT_BINARY_DIR}
|
||||||
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
||||||
)
|
)
|
||||||
|
@ -1018,13 +1022,13 @@ if (QT_QMAKE_EXECUTABLE AND QTVERSION)
|
||||||
)
|
)
|
||||||
|
|
||||||
find_program(QT_LUPDATE_EXECUTABLE
|
find_program(QT_LUPDATE_EXECUTABLE
|
||||||
NAMES lupdate-qt4 lupdate
|
NAMES lupdate-qt4 lupdate lupdate4
|
||||||
PATHS ${QT_BINARY_DIR}
|
PATHS ${QT_BINARY_DIR}
|
||||||
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
||||||
)
|
)
|
||||||
|
|
||||||
find_program(QT_LRELEASE_EXECUTABLE
|
find_program(QT_LRELEASE_EXECUTABLE
|
||||||
NAMES lrelease-qt4 lrelease
|
NAMES lrelease-qt4 lrelease lrelease4
|
||||||
PATHS ${QT_BINARY_DIR}
|
PATHS ${QT_BINARY_DIR}
|
||||||
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
||||||
)
|
)
|
||||||
|
@ -1036,13 +1040,13 @@ if (QT_QMAKE_EXECUTABLE AND QTVERSION)
|
||||||
)
|
)
|
||||||
|
|
||||||
find_program(QT_DESIGNER_EXECUTABLE
|
find_program(QT_DESIGNER_EXECUTABLE
|
||||||
NAMES designer-qt4 designer
|
NAMES designer-qt4 designer designer4
|
||||||
PATHS ${QT_BINARY_DIR}
|
PATHS ${QT_BINARY_DIR}
|
||||||
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
||||||
)
|
)
|
||||||
|
|
||||||
find_program(QT_LINGUIST_EXECUTABLE
|
find_program(QT_LINGUIST_EXECUTABLE
|
||||||
NAMES linguist-qt4 linguist
|
NAMES linguist-qt4 linguist linguist4
|
||||||
PATHS ${QT_BINARY_DIR}
|
PATHS ${QT_BINARY_DIR}
|
||||||
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
|
||||||
)
|
)
|
||||||
|
|
|
@ -122,7 +122,7 @@ if(SDL_LIBRARY_TEMP)
|
||||||
if(SDLMAIN_LIBRARY AND NOT SDL_BUILDING_LIBRARY)
|
if(SDLMAIN_LIBRARY AND NOT SDL_BUILDING_LIBRARY)
|
||||||
list(FIND SDL_LIBRARY_TEMP "${SDLMAIN_LIBRARY}" _SDL_MAIN_INDEX)
|
list(FIND SDL_LIBRARY_TEMP "${SDLMAIN_LIBRARY}" _SDL_MAIN_INDEX)
|
||||||
if(_SDL_MAIN_INDEX EQUAL -1)
|
if(_SDL_MAIN_INDEX EQUAL -1)
|
||||||
list(APPEND SDL_LIBRARY_TEMP "${SDLMAIN_LIBRARY}")
|
set(SDL_LIBRARY_TEMP "${SDLMAIN_LIBRARY}" ${SDL_LIBRARY_TEMP})
|
||||||
endif()
|
endif()
|
||||||
unset(_SDL_MAIN_INDEX)
|
unset(_SDL_MAIN_INDEX)
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -40,7 +40,7 @@ find_path(SDL_IMAGE_INCLUDE_DIR SDL_image.h
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLIMAGEDIR
|
ENV SDLIMAGEDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
PATH_SUFFIXES SDL SDL12 SDL11
|
PATH_SUFFIXES include/SDL include/SDL12 include/SDL11 include
|
||||||
)
|
)
|
||||||
|
|
||||||
if(NOT SDL_IMAGE_LIBRARY AND SDLIMAGE_LIBRARY)
|
if(NOT SDL_IMAGE_LIBRARY AND SDLIMAGE_LIBRARY)
|
||||||
|
@ -52,6 +52,7 @@ find_library(SDL_IMAGE_LIBRARY
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLIMAGEDIR
|
ENV SDLIMAGEDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
|
PATH_SUFFIXES lib
|
||||||
)
|
)
|
||||||
|
|
||||||
if(SDL_IMAGE_INCLUDE_DIR AND EXISTS "${SDL_IMAGE_INCLUDE_DIR}/SDL_image.h")
|
if(SDL_IMAGE_INCLUDE_DIR AND EXISTS "${SDL_IMAGE_INCLUDE_DIR}/SDL_image.h")
|
||||||
|
|
|
@ -40,7 +40,7 @@ find_path(SDL_MIXER_INCLUDE_DIR SDL_mixer.h
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLMIXERDIR
|
ENV SDLMIXERDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
PATH_SUFFIXES SDL SDL12 SDL11
|
PATH_SUFFIXES include/SDL include/SDL12 include/SDL11 include
|
||||||
)
|
)
|
||||||
|
|
||||||
if(NOT SDL_MIXER_LIBRARY AND SDLMIXER_LIBRARY)
|
if(NOT SDL_MIXER_LIBRARY AND SDLMIXER_LIBRARY)
|
||||||
|
@ -52,6 +52,7 @@ find_library(SDL_MIXER_LIBRARY
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLMIXERDIR
|
ENV SDLMIXERDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
|
PATH_SUFFIXES lib
|
||||||
)
|
)
|
||||||
|
|
||||||
if(SDL_MIXER_INCLUDE_DIR AND EXISTS "${SDL_MIXER_INCLUDE_DIR}/SDL_mixer.h")
|
if(SDL_MIXER_INCLUDE_DIR AND EXISTS "${SDL_MIXER_INCLUDE_DIR}/SDL_mixer.h")
|
||||||
|
|
|
@ -40,7 +40,7 @@ find_path(SDL_NET_INCLUDE_DIR SDL_net.h
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLNETDIR
|
ENV SDLNETDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
PATH_SUFFIXES SDL SDL12 SDL11
|
PATH_SUFFIXES include/SDL include/SDL12 include/SDL11 include
|
||||||
)
|
)
|
||||||
|
|
||||||
if(NOT SDL_NET_LIBRARY AND SDLNET_LIBRARY)
|
if(NOT SDL_NET_LIBRARY AND SDLNET_LIBRARY)
|
||||||
|
@ -52,6 +52,7 @@ find_library(SDL_NET_LIBRARY
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLNETDIR
|
ENV SDLNETDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
|
PATH_SUFFIXES lib
|
||||||
)
|
)
|
||||||
|
|
||||||
if(SDL_NET_INCLUDE_DIR AND EXISTS "${SDL_NET_INCLUDE_DIR}/SDL_net.h")
|
if(SDL_NET_INCLUDE_DIR AND EXISTS "${SDL_NET_INCLUDE_DIR}/SDL_net.h")
|
||||||
|
|
|
@ -77,7 +77,7 @@ find_path(SDL_SOUND_INCLUDE_DIR SDL_sound.h
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLSOUNDDIR
|
ENV SDLSOUNDDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
PATH_SUFFIXES SDL SDL12 SDL11
|
PATH_SUFFIXES include/SDL include/SDL12 include/SDL11 include
|
||||||
)
|
)
|
||||||
|
|
||||||
find_library(SDL_SOUND_LIBRARY
|
find_library(SDL_SOUND_LIBRARY
|
||||||
|
@ -85,6 +85,7 @@ find_library(SDL_SOUND_LIBRARY
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLSOUNDDIR
|
ENV SDLSOUNDDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
|
PATH_SUFFIXES lib
|
||||||
)
|
)
|
||||||
|
|
||||||
if(SDL_FOUND AND SDL_SOUND_INCLUDE_DIR AND SDL_SOUND_LIBRARY)
|
if(SDL_FOUND AND SDL_SOUND_INCLUDE_DIR AND SDL_SOUND_LIBRARY)
|
||||||
|
|
|
@ -40,7 +40,7 @@ find_path(SDL_TTF_INCLUDE_DIR SDL_ttf.h
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLTTFDIR
|
ENV SDLTTFDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
PATH_SUFFIXES SDL SDL12 SDL11
|
PATH_SUFFIXES include/SDL include/SDL12 include/SDL11 include
|
||||||
)
|
)
|
||||||
|
|
||||||
if(NOT SDL_TTF_LIBRARY AND SDLTTF_LIBRARY)
|
if(NOT SDL_TTF_LIBRARY AND SDLTTF_LIBRARY)
|
||||||
|
@ -52,6 +52,7 @@ find_library(SDL_TTF_LIBRARY
|
||||||
HINTS
|
HINTS
|
||||||
ENV SDLTTFDIR
|
ENV SDLTTFDIR
|
||||||
ENV SDLDIR
|
ENV SDLDIR
|
||||||
|
PATH_SUFFIXES lib
|
||||||
)
|
)
|
||||||
|
|
||||||
if(SDL_TTF_INCLUDE_DIR AND EXISTS "${SDL_TTF_INCLUDE_DIR}/SDL_ttf.h")
|
if(SDL_TTF_INCLUDE_DIR AND EXISTS "${SDL_TTF_INCLUDE_DIR}/SDL_ttf.h")
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(FindCygwin)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
||||||
|
|
||||||
find_program(SELF_PACKER_FOR_EXECUTABLE
|
find_program(SELF_PACKER_FOR_EXECUTABLE
|
||||||
upx
|
upx
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
#
|
#
|
||||||
# ---- Find Squish
|
# ---- Find Squish
|
||||||
# This module can be used to find Squish (currently support is aimed at version 3).
|
# This module can be used to find Squish. Currently Squish versions 3 and 4 are supported.
|
||||||
#
|
#
|
||||||
# ---- Variables and Macros
|
# ---- Variables and Macros
|
||||||
# SQUISH_FOUND If false, don't try to use Squish
|
# SQUISH_FOUND If false, don't try to use Squish
|
||||||
|
# SQUISH_VERSION The full version of Squish found
|
||||||
|
# SQUISH_VERSION_MAJOR The major version of Squish found
|
||||||
|
# SQUISH_VERSION_MINOR The minor version of Squish found
|
||||||
|
# SQUISH_VERSION_PATCH The patch version of Squish found
|
||||||
#
|
#
|
||||||
# SQUISH_INSTALL_DIR The Squish installation directory (containing bin, lib, etc)
|
# SQUISH_INSTALL_DIR The Squish installation directory (containing bin, lib, etc)
|
||||||
# SQUISH_SERVER_EXECUTABLE The squishserver executable
|
# SQUISH_SERVER_EXECUTABLE The squishserver executable
|
||||||
|
@ -13,18 +17,52 @@
|
||||||
# SQUISH_SERVER_EXECUTABLE_FOUND Was the server executable found?
|
# SQUISH_SERVER_EXECUTABLE_FOUND Was the server executable found?
|
||||||
# SQUISH_CLIENT_EXECUTABLE_FOUND Was the client executable found?
|
# SQUISH_CLIENT_EXECUTABLE_FOUND Was the client executable found?
|
||||||
#
|
#
|
||||||
# macro SQUISH_ADD_TEST(testName applicationUnderTest testSuite testCase)
|
# It provides the function squish_v4_add_test() for adding a squish test to cmake using Squish 4.x:
|
||||||
|
#
|
||||||
|
# squish_v4_add_test(cmakeTestName AUT targetName SUITE suiteName TEST squishTestName
|
||||||
|
# [SETTINGSGROUP group] [PRE_COMMAND command] [POST_COMMAND command] )
|
||||||
|
#
|
||||||
|
# The arguments have the following meaning:
|
||||||
|
# cmakeTestName: this will be used as the first argument for add_test()
|
||||||
|
# AUT targetName: the name of the cmake target which will be used as AUT, i.e. the
|
||||||
|
# executable which will be tested.
|
||||||
|
# SUITE suiteName: this is either the full path to the squish suite, or just the
|
||||||
|
# last directory of the suite, i.e. the suite name. In this case
|
||||||
|
# the CMakeLists.txt which calls squish_add_test() must be located
|
||||||
|
# in the parent directory of the suite directory.
|
||||||
|
# TEST squishTestName: the name of the squish test, i.e. the name of the subdirectory
|
||||||
|
# of the test inside the suite directory.
|
||||||
|
# SETTINGSGROUP group: if specified, the given settings group will be used for executing the test.
|
||||||
|
# If not specified, the groupname will be "CTest_<username>"
|
||||||
|
# PRE_COMMAND command: if specified, the given command will be executed before starting the squish test.
|
||||||
|
# POST_COMMAND command: same as PRE_COMMAND, but after the squish test has been executed.
|
||||||
|
#
|
||||||
|
# ---- Typical Use
|
||||||
|
# enable_testing()
|
||||||
|
# find_package(Squish 4.0)
|
||||||
|
# if (SQUISH_FOUND)
|
||||||
|
# squish_v4_add_test(myTestName AUT myApp SUITE ${CMAKE_SOURCE_DIR}/tests/mySuite TEST someSquishTest SETTINGSGROUP myGroup )
|
||||||
|
# endif ()
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# For users of Squish version 3.x the macro squish_v3_add_test() is provided:
|
||||||
|
# squish_v3_add_test(testName applicationUnderTest testCase envVars testWrapper)
|
||||||
|
# Use this macro to add a test using Squish 3.x.
|
||||||
#
|
#
|
||||||
# ---- Typical Use
|
# ---- Typical Use
|
||||||
# enable_testing()
|
# enable_testing()
|
||||||
# find_package(Squish)
|
# find_package(Squish)
|
||||||
# if (SQUISH_FOUND)
|
# if (SQUISH_FOUND)
|
||||||
# SQUISH_ADD_TEST(myTestName myApplication testSuiteName testCaseName)
|
# squish_v3_add_test(myTestName myApplication testCase envVars testWrapper)
|
||||||
# endif ()
|
# endif ()
|
||||||
#
|
#
|
||||||
|
# macro SQUISH_ADD_TEST(testName applicationUnderTest testCase envVars testWrapper)
|
||||||
|
# This is deprecated. Use SQUISH_V3_ADD_TEST() if you are using Squish 3.x instead.
|
||||||
|
|
||||||
|
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
# Copyright 2008-2009 Kitware, Inc.
|
# Copyright 2008-2009 Kitware, Inc.
|
||||||
|
# Copyright 2012 Alexander Neundorf
|
||||||
#
|
#
|
||||||
# Distributed under the OSI-approved BSD License (the "License");
|
# Distributed under the OSI-approved BSD License (the "License");
|
||||||
# see accompanying file Copyright.txt for details.
|
# see accompanying file Copyright.txt for details.
|
||||||
|
@ -36,6 +74,9 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
|
|
||||||
|
include(CMakeParseArguments)
|
||||||
|
|
||||||
set(SQUISH_INSTALL_DIR_STRING "Directory containing the bin, doc, and lib directories for Squish; this should be the root of the installation directory.")
|
set(SQUISH_INSTALL_DIR_STRING "Directory containing the bin, doc, and lib directories for Squish; this should be the root of the installation directory.")
|
||||||
set(SQUISH_SERVER_EXECUTABLE_STRING "The squishserver executable program.")
|
set(SQUISH_SERVER_EXECUTABLE_STRING "The squishserver executable program.")
|
||||||
set(SQUISH_CLIENT_EXECUTABLE_STRING "The squishclient executable program.")
|
set(SQUISH_CLIENT_EXECUTABLE_STRING "The squishclient executable program.")
|
||||||
|
@ -74,21 +115,36 @@ if(SQUISH_INSTALL_DIR)
|
||||||
|
|
||||||
# find the client program
|
# find the client program
|
||||||
if(NOT SQUISH_CLIENT_EXECUTABLE)
|
if(NOT SQUISH_CLIENT_EXECUTABLE)
|
||||||
find_program(SQUISH_CLIENT_EXECUTABLE ${SQUISH_INSTALL_DIR}/bin/squishrunner DOC "The ${SQUISH_CLIENT_EXECUTABLE_STRING}")
|
find_program(SQUISH_CLIENT_EXECUTABLE ${SQUISH_INSTALL_DIR}/bin/squishrunner${CMAKE_EXECUTABLE_SUFFIX} DOC "The ${SQUISH_CLIENT_EXECUTABLE_STRING}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# find the server program
|
# find the server program
|
||||||
if(NOT SQUISH_SERVER_EXECUTABLE)
|
if(NOT SQUISH_SERVER_EXECUTABLE)
|
||||||
find_program(SQUISH_SERVER_EXECUTABLE ${SQUISH_INSTALL_DIR}/bin/squishserver DOC "The ${SQUISH_SERVER_EXECUTABLE_STRING}")
|
find_program(SQUISH_SERVER_EXECUTABLE ${SQUISH_INSTALL_DIR}/bin/squishserver${CMAKE_EXECUTABLE_SUFFIX} DOC "The ${SQUISH_SERVER_EXECUTABLE_STRING}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
else()
|
else()
|
||||||
set(SQUISH_INSTALL_DIR_FOUND 0)
|
set(SQUISH_INSTALL_DIR_FOUND 0)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
set(SQUISH_VERSION)
|
||||||
|
set(SQUISH_VERSION_MAJOR )
|
||||||
|
set(SQUISH_VERSION_MINOR )
|
||||||
|
set(SQUISH_VERSION_PATCH )
|
||||||
|
|
||||||
# record if executables are set
|
# record if executables are set
|
||||||
if(SQUISH_CLIENT_EXECUTABLE)
|
if(SQUISH_CLIENT_EXECUTABLE)
|
||||||
set(SQUISH_CLIENT_EXECUTABLE_FOUND 1)
|
set(SQUISH_CLIENT_EXECUTABLE_FOUND 1)
|
||||||
|
execute_process(COMMAND "${SQUISH_CLIENT_EXECUTABLE}" --version
|
||||||
|
OUTPUT_VARIABLE _squishVersionOutput
|
||||||
|
ERROR_QUIET )
|
||||||
|
if("${_squishVersionOutput}" MATCHES "([0-9]+)\\.([0-9]+)\\.([0-9]+).*$")
|
||||||
|
set(SQUISH_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
||||||
|
set(SQUISH_VERSION_MINOR "${CMAKE_MATCH_2}")
|
||||||
|
set(SQUISH_VERSION_PATCH "${CMAKE_MATCH_3}")
|
||||||
|
set(SQUISH_VERSION "${SQUISH_VERSION_MAJOR}.${SQUISH_VERSION_MINOR}.${SQUISH_VERSION_PATCH}" )
|
||||||
|
endif()
|
||||||
else()
|
else()
|
||||||
set(SQUISH_CLIENT_EXECUTABLE_FOUND 0)
|
set(SQUISH_CLIENT_EXECUTABLE_FOUND 0)
|
||||||
endif()
|
endif()
|
||||||
|
@ -100,16 +156,21 @@ else()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# record if Squish was found
|
# record if Squish was found
|
||||||
set(SQUISH_FOUND 1)
|
include(FindPackageHandleStandardArgs)
|
||||||
foreach(var SQUISH_INSTALL_DIR_FOUND SQUISH_CLIENT_EXECUTABLE_FOUND SQUISH_SERVER_EXECUTABLE_FOUND)
|
find_package_handle_standard_args(Squish REQUIRED_VARS SQUISH_INSTALL_DIR SQUISH_CLIENT_EXECUTABLE SQUISH_SERVER_EXECUTABLE
|
||||||
if(NOT ${var})
|
VERSION_VAR SQUISH_VERSION )
|
||||||
set(SQUISH_FOUND 0)
|
|
||||||
endif()
|
|
||||||
endforeach()
|
set(_SQUISH_MODULE_DIR "${CMAKE_CURRENT_LIST_DIR}")
|
||||||
|
|
||||||
|
macro(SQUISH_V3_ADD_TEST testName testAUT testCase envVars testWraper)
|
||||||
|
if("${SQUISH_VERSION_MAJOR}" STREQUAL "4")
|
||||||
|
message(STATUS "Using squish_v3_add_test(), but SQUISH_VERSION_MAJOR is ${SQUISH_VERSION_MAJOR}.\nThis may not work.")
|
||||||
|
endif()
|
||||||
|
|
||||||
macro(SQUISH_ADD_TEST testName testAUT testCase envVars testWraper)
|
|
||||||
add_test(${testName}
|
add_test(${testName}
|
||||||
${CMAKE_COMMAND} -V -VV
|
${CMAKE_COMMAND} -V -VV
|
||||||
|
"-Dsquish_version:STRING=3"
|
||||||
"-Dsquish_aut:STRING=${testAUT}"
|
"-Dsquish_aut:STRING=${testAUT}"
|
||||||
"-Dsquish_server_executable:STRING=${SQUISH_SERVER_EXECUTABLE}"
|
"-Dsquish_server_executable:STRING=${SQUISH_SERVER_EXECUTABLE}"
|
||||||
"-Dsquish_client_executable:STRING=${SQUISH_CLIENT_EXECUTABLE}"
|
"-Dsquish_client_executable:STRING=${SQUISH_CLIENT_EXECUTABLE}"
|
||||||
|
@ -117,10 +178,84 @@ macro(SQUISH_ADD_TEST testName testAUT testCase envVars testWraper)
|
||||||
"-Dsquish_test_case:STRING=${testCase}"
|
"-Dsquish_test_case:STRING=${testCase}"
|
||||||
"-Dsquish_env_vars:STRING=${envVars}"
|
"-Dsquish_env_vars:STRING=${envVars}"
|
||||||
"-Dsquish_wrapper:STRING=${testWraper}"
|
"-Dsquish_wrapper:STRING=${testWraper}"
|
||||||
-P "${CMAKE_ROOT}/Modules/SquishTestScript.cmake"
|
"-Dsquish_module_dir:STRING=${_SQUISH_MODULE_DIR}"
|
||||||
|
-P "${_SQUISH_MODULE_DIR}/SquishTestScript.cmake"
|
||||||
)
|
)
|
||||||
set_tests_properties(${testName}
|
set_tests_properties(${testName}
|
||||||
PROPERTIES FAIL_REGULAR_EXPRESSION "FAILED;ERROR;FATAL"
|
PROPERTIES FAIL_REGULAR_EXPRESSION "FAILED;ERROR;FATAL"
|
||||||
)
|
)
|
||||||
endmacro()
|
endmacro()
|
||||||
|
|
||||||
|
|
||||||
|
macro(SQUISH_ADD_TEST)
|
||||||
|
message(STATUS "Using squish_add_test() is deprecated, use squish_v3_add_test() instead.")
|
||||||
|
squish_v3_add_test(${ARGV})
|
||||||
|
endmacro()
|
||||||
|
|
||||||
|
|
||||||
|
function(SQUISH_V4_ADD_TEST testName)
|
||||||
|
|
||||||
|
if(NOT "${SQUISH_VERSION_MAJOR}" STREQUAL "4")
|
||||||
|
message(STATUS "Using squish_v4_add_test(), but SQUISH_VERSION_MAJOR is ${SQUISH_VERSION_MAJOR}.\nThis may not work.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(oneValueArgs AUT SUITE TEST SETTINGSGROUP PRE_COMMAND POST_COMMAND)
|
||||||
|
|
||||||
|
cmake_parse_arguments(_SQUISH "" "${oneValueArgs}" "" ${ARGN} )
|
||||||
|
|
||||||
|
if(_SQUISH_UNPARSED_ARGUMENTS)
|
||||||
|
message(FATAL_ERROR "Unknown keywords given to SQUISH_ADD_TEST(): \"${_SQUISH_UNPARSED_ARGUMENTS}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT _SQUISH_AUT)
|
||||||
|
message(FATAL_ERROR "Required argument AUT not given for SQUISH_ADD_TEST()")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT _SQUISH_SUITE)
|
||||||
|
message(FATAL_ERROR "Required argument SUITE not given for SQUISH_ADD_TEST()")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT _SQUISH_TEST)
|
||||||
|
message(FATAL_ERROR "Required argument TEST not given for SQUISH_ADD_TEST()")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
get_target_property(testAUTLocation ${_SQUISH_AUT} LOCATION)
|
||||||
|
get_filename_component(testAUTDir ${testAUTLocation} PATH)
|
||||||
|
get_filename_component(testAUTName ${testAUTLocation} NAME)
|
||||||
|
|
||||||
|
get_filename_component(absTestSuite "${_SQUISH_SUITE}" ABSOLUTE)
|
||||||
|
if(NOT EXISTS "${absTestSuite}")
|
||||||
|
message(FATAL_ERROR "Could not find squish test suite ${_SQUISH_SUITE} (checked ${absTestSuite})")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(absTestCase "${absTestSuite}/${_SQUISH_TEST}")
|
||||||
|
if(NOT EXISTS "${absTestCase}")
|
||||||
|
message(FATAL_ERROR "Could not find squish testcase ${_SQUISH_TEST} (checked ${absTestCase})")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT _SQUISH_SETTINGSGROUP)
|
||||||
|
set(_SQUISH_SETTINGSGROUP "CTest_$ENV{LOGNAME}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_test(${testName}
|
||||||
|
${CMAKE_COMMAND} -V -VV
|
||||||
|
"-Dsquish_version:STRING=4"
|
||||||
|
"-Dsquish_aut:STRING=${testAUTName}"
|
||||||
|
"-Dsquish_aut_dir:STRING=${testAUTDir}"
|
||||||
|
"-Dsquish_server_executable:STRING=${SQUISH_SERVER_EXECUTABLE}"
|
||||||
|
"-Dsquish_client_executable:STRING=${SQUISH_CLIENT_EXECUTABLE}"
|
||||||
|
"-Dsquish_libqtdir:STRING=${QT_LIBRARY_DIR}"
|
||||||
|
"-Dsquish_test_suite:STRING=${absTestSuite}"
|
||||||
|
"-Dsquish_test_case:STRING=${_SQUISH_TEST}"
|
||||||
|
"-Dsquish_env_vars:STRING=${envVars}"
|
||||||
|
"-Dsquish_wrapper:STRING=${testWraper}"
|
||||||
|
"-Dsquish_module_dir:STRING=${_SQUISH_MODULE_DIR}"
|
||||||
|
"-Dsquish_settingsgroup:STRING=${_SQUISH_SETTINGSGROUP}"
|
||||||
|
"-Dsquish_pre_command:STRING=${_SQUISH_PRE_COMMAND}"
|
||||||
|
"-Dsquish_post_command:STRING=${_SQUISH_POST_COMMAND}"
|
||||||
|
-P "${_SQUISH_MODULE_DIR}/SquishTestScript.cmake"
|
||||||
|
)
|
||||||
|
set_tests_properties(${testName}
|
||||||
|
PROPERTIES FAIL_REGULAR_EXPRESSION "FAIL;FAILED;ERROR;FATAL"
|
||||||
|
)
|
||||||
|
endfunction()
|
||||||
|
|
|
@ -44,9 +44,9 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(CMakeFindFrameworks)
|
include(${CMAKE_CURRENT_LIST_DIR}/CMakeFindFrameworks.cmake)
|
||||||
include(FindTclsh)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindTclsh.cmake)
|
||||||
include(FindWish)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindWish.cmake)
|
||||||
|
|
||||||
if(TCLSH_VERSION_STRING)
|
if(TCLSH_VERSION_STRING)
|
||||||
set(TCL_TCLSH_VERSION "${TCLSH_VERSION_STRING}")
|
set(TCL_TCLSH_VERSION "${TCLSH_VERSION_STRING}")
|
||||||
|
@ -82,6 +82,10 @@ set(TCLTK_POSSIBLE_LIB_PATHS
|
||||||
"${TK_LIBRARY_PATH}"
|
"${TK_LIBRARY_PATH}"
|
||||||
"${TCL_TCLSH_PATH_PARENT}/lib"
|
"${TCL_TCLSH_PATH_PARENT}/lib"
|
||||||
"${TK_WISH_PATH_PARENT}/lib"
|
"${TK_WISH_PATH_PARENT}/lib"
|
||||||
|
/usr/local/lib/tcl/tcl8.5
|
||||||
|
/usr/local/lib/tcl/tk8.5
|
||||||
|
/usr/local/lib/tcl/tcl8.4
|
||||||
|
/usr/local/lib/tcl/tk8.4
|
||||||
)
|
)
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
|
@ -168,6 +172,10 @@ set(TCLTK_POSSIBLE_INCLUDE_PATHS
|
||||||
/usr/include/tcl8.3
|
/usr/include/tcl8.3
|
||||||
/usr/include/tcl8.2
|
/usr/include/tcl8.2
|
||||||
/usr/include/tcl8.0
|
/usr/include/tcl8.0
|
||||||
|
/usr/local/include/tcl8.5
|
||||||
|
/usr/local/include/tk8.5
|
||||||
|
/usr/local/include/tcl8.4
|
||||||
|
/usr/local/include/tk8.4
|
||||||
)
|
)
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(FindTCL)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindTCL.cmake)
|
||||||
|
|
||||||
get_filename_component(TCL_TCLSH_PATH "${TCL_TCLSH}" PATH)
|
get_filename_component(TCL_TCLSH_PATH "${TCL_TCLSH}" PATH)
|
||||||
get_filename_component(TCL_TCLSH_PATH_PARENT "${TCL_TCLSH_PATH}" PATH)
|
get_filename_component(TCL_TCLSH_PATH_PARENT "${TCL_TCLSH_PATH}" PATH)
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(FindCygwin)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
||||||
|
|
||||||
find_program(BASH
|
find_program(BASH
|
||||||
bash
|
bash
|
||||||
|
|
|
@ -62,7 +62,7 @@ set(VTK_DIR_MESSAGE "VTK not found. Set the VTK_DIR cmake cache entry to the ${
|
||||||
if(_VTK_40_ALLOW AND VTK_DIR)
|
if(_VTK_40_ALLOW AND VTK_DIR)
|
||||||
if(EXISTS ${VTK_DIR}/UseVTK.cmake AND NOT EXISTS ${VTK_DIR}/VTKConfig.cmake)
|
if(EXISTS ${VTK_DIR}/UseVTK.cmake AND NOT EXISTS ${VTK_DIR}/VTKConfig.cmake)
|
||||||
set(VTK_FOUND 1)
|
set(VTK_FOUND 1)
|
||||||
include(UseVTKConfig40) # No VTKConfig; load VTK 4.0 settings.
|
include(${CMAKE_CURRENT_LIST_DIR}/UseVTKConfig40.cmake) # No VTKConfig; load VTK 4.0 settings.
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@ -117,7 +117,7 @@ if(_VTK_40_ALLOW AND NOT VTK_DIR)
|
||||||
if(VTK_DIR)
|
if(VTK_DIR)
|
||||||
if(EXISTS ${VTK_DIR}/UseVTK.cmake AND NOT EXISTS ${VTK_DIR}/VTKConfig.cmake)
|
if(EXISTS ${VTK_DIR}/UseVTK.cmake AND NOT EXISTS ${VTK_DIR}/VTKConfig.cmake)
|
||||||
set(VTK_FOUND 1)
|
set(VTK_FOUND 1)
|
||||||
include(UseVTKConfig40) # No VTKConfig; load VTK 4.0 settings.
|
include(${CMAKE_CURRENT_LIST_DIR}/UseVTKConfig40.cmake) # No VTKConfig; load VTK 4.0 settings.
|
||||||
else()
|
else()
|
||||||
# We found the wrong version. Pretend we did not find it.
|
# We found the wrong version. Pretend we did not find it.
|
||||||
set(VTK_DIR "VTK_DIR-NOTFOUND" CACHE PATH "The ${VTK_DIR_DESCRIPTION}" FORCE)
|
set(VTK_DIR "VTK_DIR-NOTFOUND" CACHE PATH "The ${VTK_DIR_DESCRIPTION}" FORCE)
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
include(FindCygwin)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
||||||
|
|
||||||
find_program(WGET_EXECUTABLE
|
find_program(WGET_EXECUTABLE
|
||||||
wget
|
wget
|
||||||
|
|
|
@ -336,8 +336,8 @@ if (UNIX)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if(X11_FOUND)
|
if(X11_FOUND)
|
||||||
include(CheckFunctionExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckFunctionExists.cmake)
|
||||||
include(CheckLibraryExists)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckLibraryExists.cmake)
|
||||||
|
|
||||||
# Translated from an autoconf-generated configure script.
|
# Translated from an autoconf-generated configure script.
|
||||||
# See libs.m4 in autoconf's m4 directory.
|
# See libs.m4 in autoconf's m4 directory.
|
||||||
|
@ -417,7 +417,7 @@ if (UNIX)
|
||||||
# Build the final list of libraries.
|
# Build the final list of libraries.
|
||||||
set(X11_LIBRARIES ${X11_X_PRE_LIBS} ${X11_LIBRARIES} ${X11_X_EXTRA_LIBS})
|
set(X11_LIBRARIES ${X11_X_PRE_LIBS} ${X11_LIBRARIES} ${X11_X_EXTRA_LIBS})
|
||||||
|
|
||||||
include(FindPackageMessage)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake)
|
||||||
FIND_PACKAGE_MESSAGE(X11 "Found X11: ${X11_X11_LIB}"
|
FIND_PACKAGE_MESSAGE(X11 "Found X11: ${X11_X11_LIB}"
|
||||||
"[${X11_X11_LIB}][${X11_INCLUDE_DIR}]")
|
"[${X11_X11_LIB}][${X11_INCLUDE_DIR}]")
|
||||||
else ()
|
else ()
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgUtil/SceneView>
|
# #include <osgUtil/SceneView>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSG osg/PositionAttitudeTransform)
|
OSG_FIND_PATH (OSG osg/PositionAttitudeTransform)
|
||||||
OSG_FIND_LIBRARY(OSG osg)
|
OSG_FIND_LIBRARY(OSG osg)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgAnimation/Animation>
|
# #include <osgAnimation/Animation>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGANIMATION osgAnimation/Animation)
|
OSG_FIND_PATH (OSGANIMATION osgAnimation/Animation)
|
||||||
OSG_FIND_LIBRARY(OSGANIMATION osgAnimation)
|
OSG_FIND_LIBRARY(OSGANIMATION osgAnimation)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgDB/DatabasePager>
|
# #include <osgDB/DatabasePager>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGDB osgDB/DatabasePager)
|
OSG_FIND_PATH (OSGDB osgDB/DatabasePager)
|
||||||
OSG_FIND_LIBRARY(OSGDB osgDB)
|
OSG_FIND_LIBRARY(OSGDB osgDB)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgFX/BumpMapping>
|
# #include <osgFX/BumpMapping>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGFX osgFX/BumpMapping)
|
OSG_FIND_PATH (OSGFX osgFX/BumpMapping)
|
||||||
OSG_FIND_LIBRARY(OSGFX osgFX)
|
OSG_FIND_LIBRARY(OSGFX osgFX)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgGA/FlightManipulator>
|
# #include <osgGA/FlightManipulator>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGGA osgGA/FlightManipulator)
|
OSG_FIND_PATH (OSGGA osgGA/FlightManipulator)
|
||||||
OSG_FIND_LIBRARY(OSGGA osgGA)
|
OSG_FIND_LIBRARY(OSGGA osgGA)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgIntrospection/Reflection>
|
# #include <osgIntrospection/Reflection>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGINTROSPECTION osgIntrospection/Reflection)
|
OSG_FIND_PATH (OSGINTROSPECTION osgIntrospection/Reflection)
|
||||||
OSG_FIND_LIBRARY(OSGINTROSPECTION osgIntrospection)
|
OSG_FIND_LIBRARY(OSGINTROSPECTION osgIntrospection)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgManipulator/TrackballDragger>
|
# #include <osgManipulator/TrackballDragger>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGMANIPULATOR osgManipulator/TrackballDragger)
|
OSG_FIND_PATH (OSGMANIPULATOR osgManipulator/TrackballDragger)
|
||||||
OSG_FIND_LIBRARY(OSGMANIPULATOR osgManipulator)
|
OSG_FIND_LIBRARY(OSGMANIPULATOR osgManipulator)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgParticle/FireEffect>
|
# #include <osgParticle/FireEffect>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGPARTICLE osgParticle/FireEffect)
|
OSG_FIND_PATH (OSGPARTICLE osgParticle/FireEffect)
|
||||||
OSG_FIND_LIBRARY(OSGPARTICLE osgParticle)
|
OSG_FIND_LIBRARY(OSGPARTICLE osgParticle)
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgPresentation/SlideEventHandler>
|
# #include <osgPresentation/SlideEventHandler>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGPRESENTATION osgPresentation/SlideEventHandler)
|
OSG_FIND_PATH (OSGPRESENTATION osgPresentation/SlideEventHandler)
|
||||||
OSG_FIND_LIBRARY(OSGPRESENTATION osgPresentation)
|
OSG_FIND_LIBRARY(OSGPRESENTATION osgPresentation)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgProducer/OsgSceneHandler>
|
# #include <osgProducer/OsgSceneHandler>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGPRODUCER osgProducer/OsgSceneHandler)
|
OSG_FIND_PATH (OSGPRODUCER osgProducer/OsgSceneHandler)
|
||||||
OSG_FIND_LIBRARY(OSGPRODUCER osgProducer)
|
OSG_FIND_LIBRARY(OSGPRODUCER osgProducer)
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgQt/GraphicsWindowQt>
|
# #include <osgQt/GraphicsWindowQt>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGQT osgQt/GraphicsWindowQt)
|
OSG_FIND_PATH (OSGQT osgQt/GraphicsWindowQt)
|
||||||
OSG_FIND_LIBRARY(OSGQT osgQt)
|
OSG_FIND_LIBRARY(OSGQT osgQt)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgShadow/ShadowTexture>
|
# #include <osgShadow/ShadowTexture>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGSHADOW osgShadow/ShadowTexture)
|
OSG_FIND_PATH (OSGSHADOW osgShadow/ShadowTexture)
|
||||||
OSG_FIND_LIBRARY(OSGSHADOW osgShadow)
|
OSG_FIND_LIBRARY(OSGSHADOW osgShadow)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgSim/ImpostorSprite>
|
# #include <osgSim/ImpostorSprite>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGSIM osgSim/ImpostorSprite)
|
OSG_FIND_PATH (OSGSIM osgSim/ImpostorSprite)
|
||||||
OSG_FIND_LIBRARY(OSGSIM osgSim)
|
OSG_FIND_LIBRARY(OSGSIM osgSim)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgTerrain/Terrain>
|
# #include <osgTerrain/Terrain>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGTERRAIN osgTerrain/Terrain)
|
OSG_FIND_PATH (OSGTERRAIN osgTerrain/Terrain)
|
||||||
OSG_FIND_LIBRARY(OSGTERRAIN osgTerrain)
|
OSG_FIND_LIBRARY(OSGTERRAIN osgTerrain)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgText/Text>
|
# #include <osgText/Text>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGTEXT osgText/Text)
|
OSG_FIND_PATH (OSGTEXT osgText/Text)
|
||||||
OSG_FIND_LIBRARY(OSGTEXT osgText)
|
OSG_FIND_LIBRARY(OSGTEXT osgText)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgUtil/SceneView>
|
# #include <osgUtil/SceneView>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGUTIL osgUtil/SceneView)
|
OSG_FIND_PATH (OSGUTIL osgUtil/SceneView)
|
||||||
OSG_FIND_LIBRARY(OSGUTIL osgUtil)
|
OSG_FIND_LIBRARY(OSGUTIL osgUtil)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgViewer/Viewer>
|
# #include <osgViewer/Viewer>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGVIEWER osgViewer/Viewer)
|
OSG_FIND_PATH (OSGVIEWER osgViewer/Viewer)
|
||||||
OSG_FIND_LIBRARY(OSGVIEWER osgViewer)
|
OSG_FIND_LIBRARY(OSGVIEWER osgViewer)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgVolume/Volume>
|
# #include <osgVolume/Volume>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGVOLUME osgVolume/Volume)
|
OSG_FIND_PATH (OSGVOLUME osgVolume/Volume)
|
||||||
OSG_FIND_LIBRARY(OSGVOLUME osgVolume)
|
OSG_FIND_LIBRARY(OSGVOLUME osgVolume)
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
# #include <osg/PositionAttitudeTransform>
|
# #include <osg/PositionAttitudeTransform>
|
||||||
# #include <osgWidget/Widget>
|
# #include <osgWidget/Widget>
|
||||||
|
|
||||||
include(Findosg_functions)
|
include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
|
||||||
OSG_FIND_PATH (OSGWIDGET osgWidget/Widget)
|
OSG_FIND_PATH (OSGWIDGET osgWidget/Widget)
|
||||||
OSG_FIND_LIBRARY(OSGWIDGET osgWidget)
|
OSG_FIND_LIBRARY(OSGWIDGET osgWidget)
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
# HAVE_ISYSTEM - true required to replace -I by -isystem on g++
|
# HAVE_ISYSTEM - true required to replace -I by -isystem on g++
|
||||||
#
|
#
|
||||||
# For convenience include Use_wxWindows.cmake in your project's
|
# For convenience include Use_wxWindows.cmake in your project's
|
||||||
# CMakeLists.txt using include(Use_wxWindows).
|
# CMakeLists.txt using include(${CMAKE_CURRENT_LIST_DIR}/Use_wxWindows.cmake).
|
||||||
#
|
#
|
||||||
# USAGE
|
# USAGE
|
||||||
# set(WXWINDOWS_USE_GL 1)
|
# set(WXWINDOWS_USE_GL 1)
|
||||||
|
|
|
@ -37,6 +37,9 @@
|
||||||
;Set compression
|
;Set compression
|
||||||
SetCompressor @CPACK_NSIS_COMPRESSOR@
|
SetCompressor @CPACK_NSIS_COMPRESSOR@
|
||||||
|
|
||||||
|
;Require administrator access
|
||||||
|
RequestExecutionLevel admin
|
||||||
|
|
||||||
@CPACK_NSIS_DEFINES@
|
@CPACK_NSIS_DEFINES@
|
||||||
|
|
||||||
!include Sections.nsh
|
!include Sections.nsh
|
||||||
|
@ -119,7 +122,7 @@ Var AR_RegFlags
|
||||||
"exit_${SecName}:"
|
"exit_${SecName}:"
|
||||||
!macroend
|
!macroend
|
||||||
|
|
||||||
!macro RemoveSection SecName
|
!macro RemoveSection_CPack SecName
|
||||||
; This macro is used to call section's Remove_... macro
|
; This macro is used to call section's Remove_... macro
|
||||||
;from the uninstaller.
|
;from the uninstaller.
|
||||||
;Input: section index constant name specified in Section command.
|
;Input: section index constant name specified in Section command.
|
||||||
|
@ -841,7 +844,7 @@ Section "Uninstall"
|
||||||
DeleteRegKey SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@"
|
DeleteRegKey SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@"
|
||||||
|
|
||||||
; Removes all optional components
|
; Removes all optional components
|
||||||
!insertmacro SectionList "RemoveSection"
|
!insertmacro SectionList "RemoveSection_CPack"
|
||||||
|
|
||||||
!insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
|
!insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
|
||||||
|
|
||||||
|
|
|
@ -263,6 +263,23 @@ set(CMAKE_SYSTEM_FRAMEWORK_PATH
|
||||||
/Network/Library/Frameworks
|
/Network/Library/Frameworks
|
||||||
/System/Library/Frameworks)
|
/System/Library/Frameworks)
|
||||||
|
|
||||||
|
# Warn about known system mis-configuration case.
|
||||||
|
if(CMAKE_OSX_SYSROOT)
|
||||||
|
get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE)
|
||||||
|
if(NOT _IN_TC AND
|
||||||
|
NOT IS_SYMLINK "${CMAKE_OSX_SYSROOT}/Library/Frameworks"
|
||||||
|
AND IS_SYMLINK "${CMAKE_OSX_SYSROOT}/Library/Frameworks/Frameworks")
|
||||||
|
message(WARNING "The SDK Library/Frameworks path\n"
|
||||||
|
" ${CMAKE_OSX_SYSROOT}/Library/Frameworks\n"
|
||||||
|
"is not set up correctly on this system. "
|
||||||
|
"This is known to occur when installing Xcode 3.2.6:\n"
|
||||||
|
" http://bugs.python.org/issue14018\n"
|
||||||
|
"The problem may cause build errors that report missing system frameworks. "
|
||||||
|
"Fix your SDK symlinks to resolve this issue and avoid this warning."
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
# default to searching for application bundles first
|
# default to searching for application bundles first
|
||||||
if(NOT DEFINED CMAKE_FIND_APPBUNDLE)
|
if(NOT DEFINED CMAKE_FIND_APPBUNDLE)
|
||||||
set(CMAKE_FIND_APPBUNDLE FIRST)
|
set(CMAKE_FIND_APPBUNDLE FIRST)
|
||||||
|
|
|
@ -1,16 +1,14 @@
|
||||||
if(EXISTS /usr/include/dlfcn.h)
|
set(CMAKE_DL_LIBS "")
|
||||||
set(CMAKE_DL_LIBS "")
|
set(CMAKE_C_COMPILE_OPTIONS_PIC "-fPIC")
|
||||||
set(CMAKE_C_COMPILE_OPTIONS_PIC "-fPIC")
|
set(CMAKE_C_COMPILE_OPTIONS_PIE "-fPIE")
|
||||||
set(CMAKE_C_COMPILE_OPTIONS_PIE "-fPIE")
|
set(CMAKE_SHARED_LIBRARY_C_FLAGS "-fPIC") # -pic
|
||||||
set(CMAKE_SHARED_LIBRARY_C_FLAGS "-fPIC") # -pic
|
set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-shared") # -shared
|
||||||
set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-shared") # -shared
|
set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") # +s, flag for exe link to use shared lib
|
||||||
set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") # +s, flag for exe link to use shared lib
|
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "-Wl,-rpath,") # -rpath
|
||||||
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "-Wl,-rpath,") # -rpath
|
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":") # : or empty
|
||||||
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":") # : or empty
|
set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG "-Wl,-rpath-link,")
|
||||||
set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG "-Wl,-rpath-link,")
|
set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,")
|
||||||
set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,")
|
set(CMAKE_EXE_EXPORTS_C_FLAG "-Wl,--export-dynamic")
|
||||||
set(CMAKE_EXE_EXPORTS_C_FLAG "-Wl,--export-dynamic")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Shared libraries with no builtin soname may not be linked safely by
|
# Shared libraries with no builtin soname may not be linked safely by
|
||||||
# specifying the file path.
|
# specifying the file path.
|
||||||
|
|
|
@ -1,15 +1,13 @@
|
||||||
if(EXISTS /usr/include/dlfcn.h)
|
set(CMAKE_DL_LIBS "")
|
||||||
set(CMAKE_DL_LIBS "")
|
set(CMAKE_C_COMPILE_OPTIONS_PIC "-fPIC")
|
||||||
set(CMAKE_C_COMPILE_OPTIONS_PIC "-fPIC")
|
set(CMAKE_C_COMPILE_OPTIONS_PIE "-fPIE")
|
||||||
set(CMAKE_C_COMPILE_OPTIONS_PIE "-fPIE")
|
set(CMAKE_SHARED_LIBRARY_C_FLAGS "-fPIC") # -pic
|
||||||
set(CMAKE_SHARED_LIBRARY_C_FLAGS "-fPIC") # -pic
|
set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-shared") # -shared
|
||||||
set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-shared") # -shared
|
set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") # +s, flag for exe link to use shared lib
|
||||||
set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") # +s, flag for exe link to use shared lib
|
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "-Wl,-rpath,") # -rpath
|
||||||
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "-Wl,-rpath,") # -rpath
|
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":") # : or empty
|
||||||
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":") # : or empty
|
set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG "-Wl,-rpath-link,")
|
||||||
set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG "-Wl,-rpath-link,")
|
set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,")
|
||||||
set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,")
|
set(CMAKE_EXE_EXPORTS_C_FLAG "-Wl,--export-dynamic")
|
||||||
set(CMAKE_EXE_EXPORTS_C_FLAG "-Wl,--export-dynamic")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
include(Platform/UnixPaths)
|
include(Platform/UnixPaths)
|
||||||
|
|
|
@ -16,3 +16,7 @@ if(NOT CMAKE_PLATFORM_RUNTIME_PATH)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_OPENBSD_VERSIONING 1)
|
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_OPENBSD_VERSIONING 1)
|
||||||
|
|
||||||
|
# OpenBSD policy requires that shared libraries be installed without
|
||||||
|
# executable permission.
|
||||||
|
set(CMAKE_INSTALL_SO_NO_EXE 1)
|
||||||
|
|
|
@ -50,7 +50,7 @@ elseif(MSVC_CXX_ARCHITECTURE_ID)
|
||||||
elseif(MSVC_Fortran_ARCHITECTURE_ID)
|
elseif(MSVC_Fortran_ARCHITECTURE_ID)
|
||||||
set(_MACHINE_ARCH_FLAG "/machine:${MSVC_Fortran_ARCHITECTURE_ID}")
|
set(_MACHINE_ARCH_FLAG "/machine:${MSVC_Fortran_ARCHITECTURE_ID}")
|
||||||
endif()
|
endif()
|
||||||
set (CMAKE_EXE_LINKER_FLAGS_INIT "/STACK:10000000 /INCREMENTAL:YES ${_MACHINE_ARCH_FLAG}")
|
set (CMAKE_EXE_LINKER_FLAGS_INIT "/INCREMENTAL:YES ${_MACHINE_ARCH_FLAG}")
|
||||||
set (CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT "/debug")
|
set (CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT "/debug")
|
||||||
set (CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT "/debug")
|
set (CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT "/debug")
|
||||||
|
|
||||||
|
|
|
@ -154,13 +154,18 @@ else()
|
||||||
set(_FLAGS_CXX " /GR /GX")
|
set(_FLAGS_CXX " /GR /GX")
|
||||||
set(CMAKE_C_STANDARD_LIBRARIES_INIT "kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib")
|
set(CMAKE_C_STANDARD_LIBRARIES_INIT "kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(MSVC_VERSION LESS 1310)
|
||||||
|
set(_FLAGS_C " /Zm1000${_FLAGS_C}")
|
||||||
|
set(_FLAGS_CXX " /Zm1000${_FLAGS_CXX}")
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD_LIBRARIES_INIT "${CMAKE_C_STANDARD_LIBRARIES_INIT}")
|
set(CMAKE_CXX_STANDARD_LIBRARIES_INIT "${CMAKE_C_STANDARD_LIBRARIES_INIT}")
|
||||||
|
|
||||||
# executable linker flags
|
# executable linker flags
|
||||||
set (CMAKE_LINK_DEF_FILE_FLAG "/DEF:")
|
set (CMAKE_LINK_DEF_FILE_FLAG "/DEF:")
|
||||||
# set the stack size and the machine type
|
# set the machine type
|
||||||
set(_MACHINE_ARCH_FLAG ${MSVC_C_ARCHITECTURE_ID})
|
set(_MACHINE_ARCH_FLAG ${MSVC_C_ARCHITECTURE_ID})
|
||||||
if(NOT _MACHINE_ARCH_FLAG)
|
if(NOT _MACHINE_ARCH_FLAG)
|
||||||
set(_MACHINE_ARCH_FLAG ${MSVC_CXX_ARCHITECTURE_ID})
|
set(_MACHINE_ARCH_FLAG ${MSVC_CXX_ARCHITECTURE_ID})
|
||||||
|
@ -173,7 +178,7 @@ if(CMAKE_SYSTEM_NAME MATCHES "WindowsCE")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
set (CMAKE_EXE_LINKER_FLAGS_INIT
|
set (CMAKE_EXE_LINKER_FLAGS_INIT
|
||||||
"${CMAKE_EXE_LINKER_FLAGS_INIT} /STACK:10000000 /machine:${_MACHINE_ARCH_FLAG}")
|
"${CMAKE_EXE_LINKER_FLAGS_INIT} /machine:${_MACHINE_ARCH_FLAG}")
|
||||||
|
|
||||||
# add /debug and /INCREMENTAL:YES to DEBUG and RELWITHDEBINFO also add pdbtype
|
# add /debug and /INCREMENTAL:YES to DEBUG and RELWITHDEBINFO also add pdbtype
|
||||||
# on versions that support it
|
# on versions that support it
|
||||||
|
@ -233,7 +238,7 @@ macro(__windows_compiler_msvc lang)
|
||||||
set(CMAKE_${lang}_LINK_EXECUTABLE
|
set(CMAKE_${lang}_LINK_EXECUTABLE
|
||||||
"${_CMAKE_VS_LINK_EXE}<CMAKE_${lang}_COMPILER> ${CMAKE_CL_NOLOGO} ${CMAKE_START_TEMP_FILE} <FLAGS> /Fe<TARGET> /Fd<TARGET_PDB> <OBJECTS> /link /implib:<TARGET_IMPLIB> /version:<TARGET_VERSION_MAJOR>.<TARGET_VERSION_MINOR> <CMAKE_${lang}_LINK_FLAGS> <LINK_FLAGS> <LINK_LIBRARIES>${CMAKE_END_TEMP_FILE}")
|
"${_CMAKE_VS_LINK_EXE}<CMAKE_${lang}_COMPILER> ${CMAKE_CL_NOLOGO} ${CMAKE_START_TEMP_FILE} <FLAGS> /Fe<TARGET> /Fd<TARGET_PDB> <OBJECTS> /link /implib:<TARGET_IMPLIB> /version:<TARGET_VERSION_MAJOR>.<TARGET_VERSION_MINOR> <CMAKE_${lang}_LINK_FLAGS> <LINK_FLAGS> <LINK_LIBRARIES>${CMAKE_END_TEMP_FILE}")
|
||||||
|
|
||||||
set(CMAKE_${lang}_FLAGS_INIT "${_PLATFORM_DEFINES}${_PLATFORM_DEFINES_${lang}} /D_WINDOWS /W3 /Zm1000${_FLAGS_${lang}}")
|
set(CMAKE_${lang}_FLAGS_INIT "${_PLATFORM_DEFINES}${_PLATFORM_DEFINES_${lang}} /D_WINDOWS /W3${_FLAGS_${lang}}")
|
||||||
set(CMAKE_${lang}_FLAGS_DEBUG_INIT "/D_DEBUG /MDd /Zi /Ob0 /Od ${_RTC1}")
|
set(CMAKE_${lang}_FLAGS_DEBUG_INIT "/D_DEBUG /MDd /Zi /Ob0 /Od ${_RTC1}")
|
||||||
set(CMAKE_${lang}_FLAGS_RELEASE_INIT "/MD /O2 /Ob2 /D NDEBUG")
|
set(CMAKE_${lang}_FLAGS_RELEASE_INIT "/MD /O2 /Ob2 /D NDEBUG")
|
||||||
set(CMAKE_${lang}_FLAGS_RELWITHDEBINFO_INIT "/MD /Zi /O2 /Ob1 /D NDEBUG")
|
set(CMAKE_${lang}_FLAGS_RELWITHDEBINFO_INIT "/MD /Zi /O2 /Ob1 /D NDEBUG")
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
set SQUISHSERVER=%1
|
||||||
|
set SQUISHRUNNER=%2
|
||||||
|
set TESTSUITE=%3
|
||||||
|
set TESTCASE=%4
|
||||||
|
set AUT=%5
|
||||||
|
set AUTDIR=%6
|
||||||
|
set SETTINGSGROUP=%7
|
||||||
|
|
||||||
|
%SQUISHSERVER% --stop
|
||||||
|
|
||||||
|
echo "Adding AUT... %SQUISHSERVER% --config addAUT %AUT% %AUTDIR%"
|
||||||
|
%SQUISHSERVER% --config addAUT "%AUT%" "%AUTDIR%"
|
||||||
|
|
||||||
|
echo "Starting the squish server... %SQUISHSERVER%"
|
||||||
|
start /B %SQUISHSERVER%
|
||||||
|
|
||||||
|
echo "Running the test case...%SQUISHRUNNER% --testsuite %TESTSUITE% --testcase %TESTCASE%"
|
||||||
|
%SQUISHRUNNER% --testsuite "%TESTSUITE%" --testcase "%TESTCASE%"
|
||||||
|
set returnValue=%ERRORLEVEL%
|
||||||
|
|
||||||
|
echo "Stopping the squish server... %SQUISHSERVER% --stop"
|
||||||
|
%SQUISHSERVER% --stop
|
||||||
|
|
||||||
|
exit /B %returnValue%
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
SQUISHSERVER=$1
|
||||||
|
SQUISHRUNNER=$2
|
||||||
|
TESTSUITE=$3
|
||||||
|
TESTCASE=$4
|
||||||
|
AUT=$5
|
||||||
|
AUTDIR=$6
|
||||||
|
SETTINGSGROUP=$7
|
||||||
|
|
||||||
|
$SQUISHSERVER --stop > /dev/null 2>&1
|
||||||
|
|
||||||
|
echo "Adding AUT... $SQUISHSERVER --settingsGroup $SETTINGSGROUP --config addAUT $AUT $AUTDIR"
|
||||||
|
$SQUISHSERVER --settingsGroup "$SETTINGSGROUP" --config addAUT "$AUT" "$AUTDIR" || exit -1
|
||||||
|
# sleep 1
|
||||||
|
|
||||||
|
echo "Starting the squish server... $SQUISHSERVER --daemon"
|
||||||
|
$SQUISHSERVER --daemon || exit -1
|
||||||
|
# sleep 2
|
||||||
|
|
||||||
|
echo "Running the test case...$SQUISHRUNNER --settingsGroup $SETTINGSGROUP --testsuite $TESTSUITE --testcase $TESTCASE"
|
||||||
|
$SQUISHRUNNER --settingsGroup "$SETTINGSGROUP" --testsuite "$TESTSUITE" --testcase "$TESTCASE"
|
||||||
|
returnValue=$?
|
||||||
|
|
||||||
|
echo "Stopping the squish server... $SQUISHSERVER --stop"
|
||||||
|
$SQUISHSERVER --stop
|
||||||
|
|
||||||
|
exit $returnValue
|
|
@ -22,17 +22,22 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
|
|
||||||
|
|
||||||
# print out the variable that we are using
|
# print out the variable that we are using
|
||||||
message(STATUS "squish_aut='${squish_aut}'")
|
message(STATUS "squish_aut='${squish_aut}'")
|
||||||
|
message(STATUS "squish_aut_dir='${squish_aut_dir}'")
|
||||||
|
|
||||||
|
message(STATUS "squish_version='${squish_version}'")
|
||||||
message(STATUS "squish_server_executable='${squish_server_executable}'")
|
message(STATUS "squish_server_executable='${squish_server_executable}'")
|
||||||
message(STATUS "squish_client_executable='${squish_client_executable}'")
|
message(STATUS "squish_client_executable='${squish_client_executable}'")
|
||||||
message(STATUS "squish_libqtdir ='${squish_libqtdir}'")
|
message(STATUS "squish_libqtdir ='${squish_libqtdir}'")
|
||||||
|
message(STATUS "squish_test_suite='${squish_test_suite}'")
|
||||||
message(STATUS "squish_test_case='${squish_test_case}'")
|
message(STATUS "squish_test_case='${squish_test_case}'")
|
||||||
message(STATUS "squish_wrapper='${squish_wrapper}'")
|
message(STATUS "squish_wrapper='${squish_wrapper}'")
|
||||||
message(STATUS "squish_env_vars='${squish_env_vars}'")
|
message(STATUS "squish_env_vars='${squish_env_vars}'")
|
||||||
|
message(STATUS "squish_module_dir='${squish_module_dir}'")
|
||||||
|
message(STATUS "squish_settingsgroup='${squish_settingsgroup}'")
|
||||||
|
message(STATUS "squish_pre_command='${squish_pre_command}'")
|
||||||
|
message(STATUS "squish_post_command='${squish_post_command}'")
|
||||||
|
|
||||||
# parse enviornment variables
|
# parse enviornment variables
|
||||||
foreach(i ${squish_env_vars})
|
foreach(i ${squish_env_vars})
|
||||||
|
@ -48,25 +53,38 @@ if (QT4_INSTALLED)
|
||||||
set ( ENV{${SQUISH_LIBQTDIR}} ${squish_libqtdir} )
|
set ( ENV{${SQUISH_LIBQTDIR}} ${squish_libqtdir} )
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
# run the test
|
if(squish_pre_command)
|
||||||
if (WIN32)
|
message(STATUS "Executing pre command: ${squish_pre_command}")
|
||||||
execute_process(
|
execute_process(COMMAND "${squish_pre_command}")
|
||||||
COMMAND ${CMAKE_ROOT}/Modules/SquishRunTestCase.bat ${squish_server_executable} ${squish_client_executable} ${squish_test_case} ${squish_wrapper} ${squish_aut}
|
endif()
|
||||||
RESULT_VARIABLE test_rv
|
|
||||||
)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (UNIX)
|
# run the test
|
||||||
execute_process(
|
if("${squish_version}" STREQUAL "4")
|
||||||
COMMAND ${CMAKE_ROOT}/Modules/SquishRunTestCase.sh ${squish_server_executable} ${squish_client_executable} ${squish_test_case} ${squish_wrapper} ${squish_aut}
|
if (WIN32)
|
||||||
RESULT_VARIABLE test_rv
|
execute_process(COMMAND ${squish_module_dir}/Squish4RunTestCase.bat ${squish_server_executable} ${squish_client_executable} ${squish_test_suite} ${squish_test_case} ${squish_aut} ${squish_aut_dir} ${squish_settingsgroup}
|
||||||
)
|
RESULT_VARIABLE test_rv )
|
||||||
endif ()
|
elseif(UNIX)
|
||||||
|
execute_process(COMMAND ${squish_module_dir}/Squish4RunTestCase.sh ${squish_server_executable} ${squish_client_executable} ${squish_test_suite} ${squish_test_case} ${squish_aut} ${squish_aut_dir} ${squish_settingsgroup}
|
||||||
|
RESULT_VARIABLE test_rv )
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
else()
|
||||||
|
|
||||||
|
if (WIN32)
|
||||||
|
execute_process(COMMAND ${squish_module_dir}/SquishRunTestCase.bat ${squish_server_executable} ${squish_client_executable} ${squish_test_case} ${squish_wrapper} ${squish_aut}
|
||||||
|
RESULT_VARIABLE test_rv )
|
||||||
|
elseif(UNIX)
|
||||||
|
execute_process(COMMAND ${squish_module_dir}/SquishRunTestCase.sh ${squish_server_executable} ${squish_client_executable} ${squish_test_case} ${squish_wrapper} ${squish_aut}
|
||||||
|
RESULT_VARIABLE test_rv )
|
||||||
|
endif ()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(squish_post_command)
|
||||||
|
message(STATUS "Executing post command: ${squish_post_command}")
|
||||||
|
execute_process(COMMAND "${squish_post_command}")
|
||||||
|
endif()
|
||||||
|
|
||||||
# check for an error with running the test
|
# check for an error with running the test
|
||||||
if(NOT "${test_rv}" STREQUAL "0")
|
if(NOT "${test_rv}" STREQUAL "0")
|
||||||
message(FATAL_ERROR "Error running Squish test")
|
message(FATAL_ERROR "Error running Squish test")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue