PATH:
usr
/
share
/
cmake
/
Modules
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying # file Copyright.txt or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindwxWindows ------------- .. deprecated:: 3.0 Replaced by :module:`FindwxWidgets`. Find wxWindows (wxWidgets) installation This module finds if wxWindows/wxWidgets is installed and determines where the include files and libraries are. It also determines what the name of the library is. This code sets the following variables: :: WXWINDOWS_FOUND = system has WxWindows WXWINDOWS_LIBRARIES = path to the wxWindows libraries on Unix/Linux with additional linker flags from "wx-config --libs" CMAKE_WXWINDOWS_CXX_FLAGS = Compiler flags for wxWindows, essentially "`wx-config --cxxflags`" on Linux WXWINDOWS_INCLUDE_DIR = where to find "wx/wx.h" and "wx/setup.h" WXWINDOWS_LINK_DIRECTORIES = link directories, useful for rpath on Unix WXWINDOWS_DEFINITIONS = extra defines OPTIONS If you need OpenGL support please :: set(WXWINDOWS_USE_GL 1) in your CMakeLists.txt *before* you include this file. :: HAVE_ISYSTEM - true required to replace -I by -isystem on g++ For convenience include Use_wxWindows.cmake in your project's CMakeLists.txt using include(${CMAKE_CURRENT_LIST_DIR}/Use_wxWindows.cmake). USAGE :: set(WXWINDOWS_USE_GL 1) find_package(wxWindows) NOTES wxWidgets 2.6.x is supported for monolithic builds e.g. compiled in wx/build/msw dir as: :: nmake -f makefile.vc BUILD=debug SHARED=0 USE_OPENGL=1 MONOLITHIC=1 DEPRECATED :: CMAKE_WX_CAN_COMPILE WXWINDOWS_LIBRARY CMAKE_WX_CXX_FLAGS WXWINDOWS_INCLUDE_PATH AUTHOR Jan Woetzel (07/2003-01/2006) #]=======================================================================] # ------------------------------------------------------------------ # # -removed OPTION for CMAKE_WXWINDOWS_USE_GL. Force the developer to SET it before calling this. # -major update for wx 2.6.2 and monolithic build option. (10/2005) # # STATUS # tested with: # cmake 1.6.7, Linux (Suse 7.3), wxWindows 2.4.0, gcc 2.95 # cmake 1.6.7, Linux (Suse 8.2), wxWindows 2.4.0, gcc 3.3 # cmake 1.6.7, Linux (Suse 8.2), wxWindows 2.4.1-patch1, gcc 3.3 # cmake 1.6.7, MS Windows XP home, wxWindows 2.4.1, MS Visual Studio .net 7 2002 (static build) # cmake 2.0.5 on Windows XP and Suse Linux 9.2 # cmake 2.0.6 on Windows XP and Suse Linux 9.2, wxWidgets 2.6.2 MONOLITHIC build # cmake 2.2.2 on Windows XP, MS Visual Studio .net 2003 7.1 wxWidgets 2.6.2 MONOLITHIC build # # TODO # -OPTION for unicode builds # -further testing of DLL linking under MS WIN32 # -better support for non-monolithic builds # if(WIN32) set(WIN32_STYLE_FIND 1) endif() if(MINGW) set(WIN32_STYLE_FIND 0) set(UNIX_STYLE_FIND 1) endif() if(UNIX) set(UNIX_STYLE_FIND 1) endif() if(WIN32_STYLE_FIND) ## ###################################################################### ## ## Windows specific: ## ## candidates for root/base directory of wxwindows ## should have subdirs include and lib containing include/wx/wx.h ## fix the root dir to avoid mixing of headers/libs from different ## versions/builds: ## WX supports monolithic and multiple smaller libs (since 2.5.x), we prefer monolithic for now. ## monolithic = WX is built as a single big library ## e.g. compile on WIN32 as "nmake -f makefile.vc MONOLITHIC=1 BUILD=debug SHARED=0 USE_OPENGL=1" (JW) option(WXWINDOWS_USE_MONOLITHIC "Use monolithic build of WX??" ON) mark_as_advanced(WXWINDOWS_USE_MONOLITHIC) ## GL libs used? option(WXWINDOWS_USE_GL "Use Wx with GL support(glcanvas)?" ON) mark_as_advanced(WXWINDOWS_USE_GL) ## avoid mixing of headers and libs between multiple installed WX versions, ## select just one tree here: find_path(WXWINDOWS_ROOT_DIR include/wx/wx.h HINTS ENV WXWIN "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\wxWidgets_is1;Inno Setup: App Path]" ## WX 2.6.x "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\wxWindows_is1;Inno Setup: App Path]" ## WX 2.4.x PATHS C:/wxWidgets-2.6.2 D:/wxWidgets-2.6.2 C:/wxWidgets-2.6.1 D:/wxWidgets-2.6.1 C:/wxWindows-2.4.2 D:/wxWindows-2.4.2 ) # message("DBG found WXWINDOWS_ROOT_DIR: ${WXWINDOWS_ROOT_DIR}") ## find libs for combination of static/shared with release/debug ## be careful if you add something here, ## avoid mixing of headers and libs of different wx versions, ## there may be multiple WX versions installed. set (WXWINDOWS_POSSIBLE_LIB_PATHS "${WXWINDOWS_ROOT_DIR}/lib" ) ## monolithic? if (WXWINDOWS_USE_MONOLITHIC) find_library(WXWINDOWS_STATIC_LIBRARY NAMES wx wxmsw wxmsw26 PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static release build library" ) find_library(WXWINDOWS_STATIC_DEBUG_LIBRARY NAMES wxd wxmswd wxmsw26d PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static debug build library" ) find_library(WXWINDOWS_SHARED_LIBRARY NAMES wxmsw26 wxmsw262 wxmsw24 wxmsw242 wxmsw241 wxmsw240 wx23_2 wx22_9 PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_dll" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows shared release build library" ) find_library(WXWINDOWS_SHARED_DEBUG_LIBRARY NAMES wxmsw26d wxmsw262d wxmsw24d wxmsw241d wxmsw240d wx23_2d wx22_9d PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_dll" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows shared debug build library " ) ## ## required for WXWINDOWS_USE_GL ## gl lib is always build separate: ## find_library(WXWINDOWS_STATIC_LIBRARY_GL NAMES wx_gl wxmsw_gl wxmsw26_gl PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static release build GL library" ) find_library(WXWINDOWS_STATIC_DEBUG_LIBRARY_GL NAMES wxd_gl wxmswd_gl wxmsw26d_gl PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static debug build GL library" ) find_library(WXWINDOWS_STATIC_DEBUG_LIBRARY_PNG NAMES wxpngd PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static debug png library" ) find_library(WXWINDOWS_STATIC_LIBRARY_PNG NAMES wxpng PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static png library" ) find_library(WXWINDOWS_STATIC_DEBUG_LIBRARY_TIFF NAMES wxtiffd PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static debug tiff library" ) find_library(WXWINDOWS_STATIC_LIBRARY_TIFF NAMES wxtiff PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static tiff library" ) find_library(WXWINDOWS_STATIC_DEBUG_LIBRARY_JPEG NAMES wxjpegd wxjpgd PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static debug jpeg library" ) find_library(WXWINDOWS_STATIC_LIBRARY_JPEG NAMES wxjpeg wxjpg PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static jpeg library" ) find_library(WXWINDOWS_STATIC_DEBUG_LIBRARY_ZLIB NAMES wxzlibd PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static debug zlib library" ) find_library(WXWINDOWS_STATIC_LIBRARY_ZLIB NAMES wxzlib PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static zib library" ) find_library(WXWINDOWS_STATIC_DEBUG_LIBRARY_REGEX NAMES wxregexd PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static debug regex library" ) find_library(WXWINDOWS_STATIC_LIBRARY_REGEX NAMES wxregex PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_lib" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows static regex library" ) ## untested: find_library(WXWINDOWS_SHARED_LIBRARY_GL NAMES wx_gl wxmsw_gl wxmsw26_gl PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_dll" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows shared release build GL library" ) find_library(WXWINDOWS_SHARED_DEBUG_LIBRARY_GL NAMES wxd_gl wxmswd_gl wxmsw26d_gl PATHS "${WXWINDOWS_ROOT_DIR}/lib/vc_dll" ${WXWINDOWS_POSSIBLE_LIB_PATHS} DOC "wxWindows shared debug build GL library" ) else () ## WX is built as multiple small pieces libraries instead of monolithic ## DEPRECATED (jw) replaced by more general WXWINDOWS_USE_MONOLITHIC ON/OFF # option(WXWINDOWS_SEPARATE_LIBS_BUILD "Is wxWindows build with separate libs?" OFF) ## HACK: This is very dirty. ## because the libs of a particular version are explicitly listed ## and NOT searched/verified. ## TODO: Really search for each lib, then decide for ## monolithic x debug x shared x GL (=16 combinations) for at least 18 libs ## --> about 288 combinations ## thus we need a different approach so solve this correctly ... message(STATUS "Warning: You are trying to use wxWidgets without monolithic build (WXWINDOWS_SEPARATE_LIBS_BUILD). This is a HACK, libraries are not verified! (JW).") set(WXWINDOWS_STATIC_LIBS ${WXWINDOWS_STATIC_LIBS} wxbase26 wxbase26_net wxbase26_odbc wxbase26_xml wxmsw26_adv wxmsw26_core wxmsw26_dbgrid wxmsw26_gl wxmsw26_html wxmsw26_media wxmsw26_qa wxmsw26_xrc wxexpat wxjpeg wxpng wxregex wxtiff wxzlib comctl32 rpcrt4 wsock32 ) ## HACK: feed in to optimized / debug libraries if both were FOUND. set(WXWINDOWS_STATIC_DEBUG_LIBS ${WXWINDOWS_STATIC_DEBUG_LIBS} wxbase26d wxbase26d_net wxbase26d_odbc wxbase26d_xml wxmsw26d_adv wxmsw26d_core wxmsw26d_dbgrid wxmsw26d_gl wxmsw26d_html wxmsw26d_media wxmsw26d_qa wxmsw26d_xrc wxexpatd wxjpegd wxpngd wxregexd wxtiffd wxzlibd comctl32 rpcrt4 wsock32 ) endif () ## ## now we should have found all WX libs available on the system. ## let the user decide which of the available onse to use. ## ## if there is at least one shared lib available ## let user choose whether to use shared or static wxwindows libs if(WXWINDOWS_SHARED_LIBRARY OR WXWINDOWS_SHARED_DEBUG_LIBRARY) ## default value OFF because wxWindows MSVS default build is static option(WXWINDOWS_USE_SHARED_LIBS "Use shared versions (dll) of wxWindows libraries?" OFF) mark_as_advanced(WXWINDOWS_USE_SHARED_LIBS) endif() ## add system libraries wxwindows always seems to depend on set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} comctl32 rpcrt4 wsock32 ) if (NOT WXWINDOWS_USE_SHARED_LIBS) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} ## these ones don't seem required, in particular ctl3d32 is not necessary (Jan Woetzel 07/2003) # ctl3d32 debug ${WXWINDOWS_STATIC_DEBUG_LIBRARY_ZLIB} optimized ${WXWINDOWS_STATIC_LIBRARY_ZLIB} debug ${WXWINDOWS_STATIC_DEBUG_LIBRARY_REGEX} optimized ${WXWINDOWS_STATIC_LIBRARY_REGEX} debug ${WXWINDOWS_STATIC_DEBUG_LIBRARY_PNG} optimized ${WXWINDOWS_STATIC_LIBRARY_PNG} debug ${WXWINDOWS_STATIC_DEBUG_LIBRARY_JPEG} optimized ${WXWINDOWS_STATIC_LIBRARY_JPEG} debug ${WXWINDOWS_STATIC_DEBUG_LIBRARY_TIFF} optimized ${WXWINDOWS_STATIC_LIBRARY_TIFF} ) endif () ## opengl/glu: TODO/FIXME: better use FindOpenGL.cmake here ## assume release versions of glu an dopengl, here. if (WXWINDOWS_USE_GL) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} opengl32 glu32 ) endif () ## ## select between use of shared or static wxWindows lib then set libs to use ## for debug and optimized build. so the user can switch between debug and ## release build e.g. within MS Visual Studio without running cmake with a ## different build directory again. ## ## then add the build specific include dir for wx/setup.h ## if(WXWINDOWS_USE_SHARED_LIBS) ##message("DBG wxWindows use shared lib selected.") ## assume that both builds use the same setup(.h) for simplicity ## shared: both wx (debug and release) found? ## assume that both builds use the same setup(.h) for simplicity if(WXWINDOWS_SHARED_DEBUG_LIBRARY AND WXWINDOWS_SHARED_LIBRARY) ##message("DBG wx shared: debug and optimized found.") find_path(WXWINDOWS_INCLUDE_DIR_SETUPH wx/setup.h ${WXWINDOWS_ROOT_DIR}/lib/mswdlld ${WXWINDOWS_ROOT_DIR}/lib/mswdll ${WXWINDOWS_ROOT_DIR}/lib/vc_dll/mswd ${WXWINDOWS_ROOT_DIR}/lib/vc_dll/msw ) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} debug ${WXWINDOWS_SHARED_DEBUG_LIBRARY} optimized ${WXWINDOWS_SHARED_LIBRARY} ) if (WXWINDOWS_USE_GL) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} debug ${WXWINDOWS_SHARED_DEBUG_LIBRARY_GL} optimized ${WXWINDOWS_SHARED_LIBRARY_GL} ) endif () endif() ## shared: only debug wx lib found? if(WXWINDOWS_SHARED_DEBUG_LIBRARY) if(NOT WXWINDOWS_SHARED_LIBRARY) ##message("DBG wx shared: debug (but no optimized) found.") find_path(WXWINDOWS_INCLUDE_DIR_SETUPH wx/setup.h ${WXWINDOWS_ROOT_DIR}/lib/mswdlld ${WXWINDOWS_ROOT_DIR}/lib/vc_dll/mswd ) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} ${WXWINDOWS_SHARED_DEBUG_LIBRARY} ) if (WXWINDOWS_USE_GL) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} ${WXWINDOWS_SHARED_DEBUG_LIBRARY_GL} ) endif () endif() endif() ## shared: only release wx lib found? if(NOT WXWINDOWS_SHARED_DEBUG_LIBRARY) if(WXWINDOWS_SHARED_LIBRARY) ##message("DBG wx shared: optimized (but no debug) found.") find_path(WXWINDOWS_INCLUDE_DIR_SETUPH wx/setup.h ${WXWINDOWS_ROOT_DIR}/lib/mswdll ${WXWINDOWS_ROOT_DIR}/lib/vc_dll/msw ) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} ${WXWINDOWS_SHARED_DEBUG_LIBRARY} ) if (WXWINDOWS_USE_GL) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} ${WXWINDOWS_SHARED_DEBUG_LIBRARY_GL} ) endif () endif() endif() ## shared: none found? if(NOT WXWINDOWS_SHARED_DEBUG_LIBRARY) if(NOT WXWINDOWS_SHARED_LIBRARY) message(STATUS "No shared wxWindows lib found, but WXWINDOWS_USE_SHARED_LIBS=${WXWINDOWS_USE_SHARED_LIBS}.") endif() endif() ######################################################################################### else() ##jw: DEPRECATED if(NOT WXWINDOWS_SEPARATE_LIBS_BUILD) ## static: both wx (debug and release) found? ## assume that both builds use the same setup(.h) for simplicity if(WXWINDOWS_STATIC_DEBUG_LIBRARY AND WXWINDOWS_STATIC_LIBRARY) ##message("DBG wx static: debug and optimized found.") find_path(WXWINDOWS_INCLUDE_DIR_SETUPH wx/setup.h ${WXWINDOWS_ROOT_DIR}/lib/mswd ${WXWINDOWS_ROOT_DIR}/lib/msw ${WXWINDOWS_ROOT_DIR}/lib/vc_lib/mswd ${WXWINDOWS_ROOT_DIR}/lib/vc_lib/msw ) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} debug ${WXWINDOWS_STATIC_DEBUG_LIBRARY} optimized ${WXWINDOWS_STATIC_LIBRARY} ) if (WXWINDOWS_USE_GL) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} debug ${WXWINDOWS_STATIC_DEBUG_LIBRARY_GL} optimized ${WXWINDOWS_STATIC_LIBRARY_GL} ) endif () endif() ## static: only debug wx lib found? if(WXWINDOWS_STATIC_DEBUG_LIBRARY) if(NOT WXWINDOWS_STATIC_LIBRARY) ##message("DBG wx static: debug (but no optimized) found.") find_path(WXWINDOWS_INCLUDE_DIR_SETUPH wx/setup.h ${WXWINDOWS_ROOT_DIR}/lib/mswd ${WXWINDOWS_ROOT_DIR}/lib/vc_lib/mswd ) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} ${WXWINDOWS_STATIC_DEBUG_LIBRARY} ) if (WXWINDOWS_USE_GL) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} ${WXWINDOWS_STATIC_DEBUG_LIBRARY_GL} ) endif () endif() endif() ## static: only release wx lib found? if(NOT WXWINDOWS_STATIC_DEBUG_LIBRARY) if(WXWINDOWS_STATIC_LIBRARY) ##message("DBG wx static: optimized (but no debug) found.") find_path(WXWINDOWS_INCLUDE_DIR_SETUPH wx/setup.h ${WXWINDOWS_ROOT_DIR}/lib/msw ${WXWINDOWS_ROOT_DIR}/lib/vc_lib/msw ) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} ${WXWINDOWS_STATIC_LIBRARY} ) if (WXWINDOWS_USE_GL) set(WXWINDOWS_LIBRARIES ${WXWINDOWS_LIBRARIES} ${WXWINDOWS_STATIC_LIBRARY_GL} ) endif () endif() endif() ## static: none found? if(NOT WXWINDOWS_STATIC_DEBUG_LIBRARY AND NOT WXWINDOWS_SEPARATE_LIBS_BUILD) if(NOT WXWINDOWS_STATIC_LIBRARY) message(STATUS "No static wxWindows lib found, but WXWINDOWS_USE_SHARED_LIBS=${WXWINDOWS_USE_SHARED_LIBS}.") endif() endif() endif() ## not necessary in wxWindows 2.4.1 and 2.6.2 ## but it may fix a previous bug, see ## http://lists.wxwindows.org/cgi-bin/ezmlm-cgi?8:mss:37574:200305:mpdioeneabobmgjenoap option(WXWINDOWS_SET_DEFINITIONS "Set additional defines for wxWindows" OFF) mark_as_advanced(WXWINDOWS_SET_DEFINITIONS) if (WXWINDOWS_SET_DEFINITIONS) set(WXWINDOWS_DEFINITIONS "-DWINVER=0x400") else () # clear: set(WXWINDOWS_DEFINITIONS "") endif () ## Find the include directories for wxwindows ## the first, build specific for wx/setup.h was determined before. ## add inc dir for general for "wx/wx.h" find_path(WXWINDOWS_INCLUDE_DIR wx/wx.h "${WXWINDOWS_ROOT_DIR}/include" ) ## append the build specific include dir for wx/setup.h: if (WXWINDOWS_INCLUDE_DIR_SETUPH) set(WXWINDOWS_INCLUDE_DIR ${WXWINDOWS_INCLUDE_DIR} ${WXWINDOWS_INCLUDE_DIR_SETUPH} ) endif () mark_as_advanced( WXWINDOWS_ROOT_DIR WXWINDOWS_INCLUDE_DIR WXWINDOWS_INCLUDE_DIR_SETUPH WXWINDOWS_STATIC_LIBRARY WXWINDOWS_STATIC_LIBRARY_GL WXWINDOWS_STATIC_DEBUG_LIBRARY WXWINDOWS_STATIC_DEBUG_LIBRARY_GL WXWINDOWS_STATIC_LIBRARY_ZLIB WXWINDOWS_STATIC_DEBUG_LIBRARY_ZLIB WXWINDOWS_STATIC_LIBRARY_REGEX WXWINDOWS_STATIC_DEBUG_LIBRARY_REGEX WXWINDOWS_STATIC_LIBRARY_PNG WXWINDOWS_STATIC_DEBUG_LIBRARY_PNG WXWINDOWS_STATIC_LIBRARY_JPEG WXWINDOWS_STATIC_DEBUG_LIBRARY_JPEG WXWINDOWS_STATIC_DEBUG_LIBRARY_TIFF WXWINDOWS_STATIC_LIBRARY_TIFF WXWINDOWS_SHARED_LIBRARY WXWINDOWS_SHARED_DEBUG_LIBRARY WXWINDOWS_SHARED_LIBRARY_GL WXWINDOWS_SHARED_DEBUG_LIBRARY_GL ) else() if (UNIX_STYLE_FIND) ## ###################################################################### ## ## UNIX/Linux specific: ## ## use backquoted wx-config to query and set flags and libs: ## 06/2003 Jan Woetzel ## option(WXWINDOWS_USE_SHARED_LIBS "Use shared versions (.so) of wxWindows libraries" ON) mark_as_advanced(WXWINDOWS_USE_SHARED_LIBS) # JW removed option and force the develper th SET it. # option(WXWINDOWS_USE_GL "use wxWindows with GL support (use additional # --gl-libs for wx-config)?" OFF) # wx-config should be in your path anyhow, usually no need to set WXWIN or # search in ../wx or ../../wx find_program(CMAKE_WXWINDOWS_WXCONFIG_EXECUTABLE NAMES $ENV{WX_CONFIG} wx-config HINTS ENV WXWIN $ENV{WXWIN}/bin PATHS ../wx/bin ../../wx/bin ) # check whether wx-config was found: if(CMAKE_WXWINDOWS_WXCONFIG_EXECUTABLE) # use shared/static wx lib? # remember: always link shared to use systems GL etc. libs (no static # linking, just link *against* static .a libs) if(WXWINDOWS_USE_SHARED_LIBS) set(WX_CONFIG_ARGS_LIBS "--libs") else() set(WX_CONFIG_ARGS_LIBS "--static --libs") endif() # do we need additionial wx GL stuff like GLCanvas ? if(WXWINDOWS_USE_GL) string(APPEND WX_CONFIG_ARGS_LIBS " --gl-libs" ) endif() ##message("DBG: WX_CONFIG_ARGS_LIBS=${WX_CONFIG_ARGS_LIBS}===") # set CXXFLAGS to be fed into CMAKE_CXX_FLAGS by the user: if (HAVE_ISYSTEM) # does the compiler support -isystem ? if (NOT APPLE) # -isystem seems to be unsupported on Mac if(CMAKE_COMPILER_IS_GNUCC AND CMAKE_COMPILER_IS_GNUCXX ) if (CMAKE_CXX_COMPILER MATCHES g\\+\\+) set(CMAKE_WXWINDOWS_CXX_FLAGS "`${CMAKE_WXWINDOWS_WXCONFIG_EXECUTABLE} --cxxflags|sed -e s/-I/-isystem/g`") else() set(CMAKE_WXWINDOWS_CXX_FLAGS "`${CMAKE_WXWINDOWS_WXCONFIG_EXECUTABLE} --cxxflags`") endif() endif() endif () endif () ##message("DBG: for compilation: ##CMAKE_WXWINDOWS_CXX_FLAGS=${CMAKE_WXWINDOWS_CXX_FLAGS}===") # keep the back-quoted string for clarity set(WXWINDOWS_LIBRARIES "`${CMAKE_WXWINDOWS_WXCONFIG_EXECUTABLE} ${WX_CONFIG_ARGS_LIBS}`") ##message("DBG2: for linking: ##WXWINDOWS_LIBRARIES=${WXWINDOWS_LIBRARIES}===") # evaluate wx-config output to separate linker flags and linkdirs for # rpath: exec_program(${CMAKE_WXWINDOWS_WXCONFIG_EXECUTABLE} ARGS ${WX_CONFIG_ARGS_LIBS} OUTPUT_VARIABLE WX_CONFIG_LIBS ) ## extract linkdirs (-L) for rpath ## use regular expression to match wildcard equivalent "-L*<endchar>" ## with <endchar> is a space or a semicolon string(REGEX MATCHALL "[-][L]([^ ;])+" WXWINDOWS_LINK_DIRECTORIES_WITH_PREFIX "${WX_CONFIG_LIBS}" ) # message("DBG WXWINDOWS_LINK_DIRECTORIES_WITH_PREFIX=${WXWINDOWS_LINK_DIRECTORIES_WITH_PREFIX}") ## remove prefix -L because we need the pure directory for LINK_DIRECTORIES ## replace -L by ; because the separator seems to be lost otherwise (bug or ## feature?) if(WXWINDOWS_LINK_DIRECTORIES_WITH_PREFIX) string(REGEX REPLACE "[-][L]" ";" WXWINDOWS_LINK_DIRECTORIES ${WXWINDOWS_LINK_DIRECTORIES_WITH_PREFIX} ) # message("DBG WXWINDOWS_LINK_DIRECTORIES=${WXWINDOWS_LINK_DIRECTORIES}") endif() ## replace space separated string by semicolon separated vector to make it ## work with LINK_DIRECTORIES separate_arguments(WXWINDOWS_LINK_DIRECTORIES) mark_as_advanced( CMAKE_WXWINDOWS_CXX_FLAGS WXWINDOWS_INCLUDE_DIR WXWINDOWS_LIBRARIES CMAKE_WXWINDOWS_WXCONFIG_EXECUTABLE ) ## we really need wx-config... else() message(STATUS "Cannot find wx-config anywhere on the system. Please put the file into your path or specify it in CMAKE_WXWINDOWS_WXCONFIG_EXECUTABLE.") mark_as_advanced(CMAKE_WXWINDOWS_WXCONFIG_EXECUTABLE) endif() else() message(STATUS "FindwxWindows.cmake: Platform unknown/unsupported by FindwxWindows.cmake. It's neither WIN32 nor UNIX") endif() endif() if(WXWINDOWS_LIBRARIES) if(WXWINDOWS_INCLUDE_DIR OR CMAKE_WXWINDOWS_CXX_FLAGS) ## found all we need. set(WXWINDOWS_FOUND 1) ## set deprecated variables for backward compatibility: set(CMAKE_WX_CAN_COMPILE ${WXWINDOWS_FOUND}) set(WXWINDOWS_LIBRARY ${WXWINDOWS_LIBRARIES}) set(WXWINDOWS_INCLUDE_PATH ${WXWINDOWS_INCLUDE_DIR}) set(WXWINDOWS_LINK_DIRECTORIES ${WXWINDOWS_LINK_DIRECTORIES}) set(CMAKE_WX_CXX_FLAGS ${CMAKE_WXWINDOWS_CXX_FLAGS}) endif() endif()
[+]
..
[+]
AndroidTestUtilities
[+]
CMakeAddFortranSubdirectory
[+]
CheckIPOSupported
[+]
Compiler
[+]
CompilerId
[+]
FetchContent
[+]
FindCUDA
[+]
FindMPI
[+]
FindPython
[+]
FortranCInterface
[+]
IntelVSImplicitPath
[+]
Internal
[+]
Platform
[+]
UseJava
[+]
UseSWIG
[-] CMakeDetermineFortranCompiler.cmake
[edit]
[-] AddFileDependencies.cmake
[edit]
[-] CMakeDetermineISPCCompiler.cmake
[edit]
[-] AndroidTestUtilities.cmake
[edit]
[-] CMakeCheckCompilerFlagCommonPatterns.cmake
[edit]
[-] BasicConfigVersion-AnyNewerVersion.cmake.in
[edit]
[-] CMakeCommonLanguageInclude.cmake
[edit]
[-] BasicConfigVersion-ExactVersion.cmake.in
[edit]
[-] CMakeDetermineCSharpCompiler.cmake
[edit]
[-] CPack.cmake
[edit]
[-] BasicConfigVersion-SameMajorVersion.cmake.in
[edit]
[-] CMakeCXXInformation.cmake
[edit]
[-] CMakeFindXCode.cmake
[edit]
[-] BasicConfigVersion-SameMinorVersion.cmake.in
[edit]
[-] CMakeDetermineJavaCompiler.cmake
[edit]
[-] BundleUtilities.cmake
[edit]
[-] CMakePlatformId.h.in
[edit]
[-] CMake.cmake
[edit]
[-] CMakeCompilerABI.h
[edit]
[-] CTest.cmake
[edit]
[-] CMakeASM-ATTInformation.cmake
[edit]
[-] CMakeDetermineOBJCCompiler.cmake
[edit]
[-] CMakeASMCompiler.cmake.in
[edit]
[-] CMakeDetermineOBJCXXCompiler.cmake
[edit]
[-] CMakeASMInformation.cmake
[edit]
[-] CMakeCompilerIdDetection.cmake
[edit]
[-] CMakeASM_MASMInformation.cmake
[edit]
[-] CMakeConfigurableFile.in
[edit]
[-] CMakeASM_NASMInformation.cmake
[edit]
[-] CMakeDependentOption.cmake
[edit]
[-] CMakeAddFortranSubdirectory.cmake
[edit]
[-] CMakeDetermineRCCompiler.cmake
[edit]
[-] CMakeAddNewLanguage.txt
[edit]
[-] CMakeDetermineASM-ATTCompiler.cmake
[edit]
[-] CMakeBackwardCompatibilityC.cmake
[edit]
[-] CMakeDetermineCompileFeatures.cmake
[edit]
[-] CMakeBackwardCompatibilityCXX.cmake
[edit]
[-] CMakeDetermineSwiftCompiler.cmake
[edit]
[-] CMakeBorlandFindMake.cmake
[edit]
[-] CMakeDetermineVSServicePack.cmake
[edit]
[-] CMakeBuildSettings.cmake.in
[edit]
[-] CMakeExpandImportedTargets.cmake
[edit]
[-] CMakeCCompiler.cmake.in
[edit]
[-] CMakeFindWMake.cmake
[edit]
[-] CMakeCCompilerABI.c
[edit]
[-] CMakeExportBuildSettings.cmake
[edit]
[-] CMakeCCompilerId.c.in
[edit]
[-] CMakeFindCodeBlocks.cmake
[edit]
[-] CMakeCInformation.cmake
[edit]
[-] CMakeDetermineCompiler.cmake
[edit]
[-] CMakeCSharpCompiler.cmake.in
[edit]
[-] CMakeFindBinUtils.cmake
[edit]
[-] CMakeCSharpCompilerId.cs.in
[edit]
[-] CMakeDetermineCompilerABI.cmake
[edit]
[-] CMakeCSharpInformation.cmake
[edit]
[-] CMakeFindFrameworks.cmake
[edit]
[-] CMakeCUDACompiler.cmake.in
[edit]
[-] CMakeFindDependencyMacro.cmake
[edit]
[-] CMakeCUDACompilerABI.cu
[edit]
[-] CMakeFindEclipseCDT4.cmake
[edit]
[-] CMakeCUDACompilerId.cu.in
[edit]
[-] CMakeFindJavaCommon.cmake
[edit]
[-] CMakeCUDAInformation.cmake
[edit]
[-] CMakeFindKate.cmake
[edit]
[-] CMakeCXXCompiler.cmake.in
[edit]
[-] CMakeFindSublimeText2.cmake
[edit]
[-] CMakeCXXCompilerABI.cpp
[edit]
[-] CMakeFindPackageMode.cmake
[edit]
[-] CMakeCXXCompilerId.cpp.in
[edit]
[-] CMakeDetermineASMCompiler.cmake
[edit]
[-] CMakeDetermineCUDACompiler.cmake
[edit]
[-] CMakeDetermineASM_MASMCompiler.cmake
[edit]
[-] CMakeDetermineCXXCompiler.cmake
[edit]
[-] CMakeDetermineASM_NASMCompiler.cmake
[edit]
[-] CMakeDetermineCompilerId.cmake
[edit]
[-] CMakeDetermineCCompiler.cmake
[edit]
[-] CMakeFortranCompiler.cmake.in
[edit]
[-] CMakeDetermineSystem.cmake
[edit]
[-] CMakeSystem.cmake.in
[edit]
[-] CMakeSystemSpecificInitialize.cmake
[edit]
[-] CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake
[edit]
[-] CMakeForceCompiler.cmake
[edit]
[-] CMakeTestJavaCompiler.cmake
[edit]
[-] CMakeFortranCompilerABI.F
[edit]
[-] CMakeTestOBJCCompiler.cmake
[edit]
[-] CMakeFortranCompilerId.F.in
[edit]
[-] CMakeTestASM-ATTCompiler.cmake
[edit]
[-] CMakeFortranInformation.cmake
[edit]
[-] CMakeTestOBJCXXCompiler.cmake
[edit]
[-] CMakeGenericSystem.cmake
[edit]
[-] CMakeTestRCCompiler.cmake
[edit]
[-] CMakeGraphVizOptions.cmake
[edit]
[-] CMakeTestASMCompiler.cmake
[edit]
[-] CMakeIOSInstallCombined.cmake
[edit]
[-] CMakeTestSwiftCompiler.cmake
[edit]
[-] CMakeISPCCompiler.cmake.in
[edit]
[-] CMakeUnixFindMake.cmake
[edit]
[-] CMakeISPCCompilerABI.ispc
[edit]
[-] CMakeVerifyManifest.cmake
[edit]
[-] CMakeISPCCompilerId.ispc.in
[edit]
[-] CPackComponent.cmake
[edit]
[-] CMakeISPCInformation.cmake
[edit]
[-] CMakeTestASM_MASMCompiler.cmake
[edit]
[-] CMakeImportBuildSettings.cmake
[edit]
[-] CMakeTestASM_NASMCompiler.cmake
[edit]
[-] CMakeInitializeConfigs.cmake
[edit]
[-] CPackIFW.cmake
[edit]
[-] CMakeJOMFindMake.cmake
[edit]
[-] CPackIFWConfigureFile.cmake
[edit]
[-] CMakeJavaCompiler.cmake.in
[edit]
[-] CSharpUtilities.cmake
[edit]
[-] CMakeJavaInformation.cmake
[edit]
[-] CMakeTestCCompiler.cmake
[edit]
[-] CMakeLanguageInformation.cmake
[edit]
[-] CTestCoverageCollectGCOV.cmake
[edit]
[-] CMakeMSYSFindMake.cmake
[edit]
[-] CTestScriptMode.cmake
[edit]
[-] CMakeMinGWFindMake.cmake
[edit]
[-] CTestTargets.cmake
[edit]
[-] CMakeNMakeFindMake.cmake
[edit]
[-] CTestUseLaunchers.cmake
[edit]
[-] CMakeNinjaFindMake.cmake
[edit]
[-] CheckCCompilerFlag.cmake
[edit]
[-] CMakeOBJCCompiler.cmake.in
[edit]
[-] CheckCSourceCompiles.cmake
[edit]
[-] CMakeOBJCCompilerABI.m
[edit]
[-] CheckCSourceRuns.cmake
[edit]
[-] CMakeOBJCCompilerId.m.in
[edit]
[-] CheckCXXCompilerFlag.cmake
[edit]
[-] CMakeOBJCInformation.cmake
[edit]
[-] CMakeTestCSharpCompiler.cmake
[edit]
[-] CMakeOBJCXXCompiler.cmake.in
[edit]
[-] CheckCXXSourceCompiles.cmake
[edit]
[-] CMakeOBJCXXCompilerABI.mm
[edit]
[-] CheckCXXSourceRuns.cmake
[edit]
[-] CMakeOBJCXXCompilerId.mm.in
[edit]
[-] CMakeTestCUDACompiler.cmake
[edit]
[-] CMakeOBJCXXInformation.cmake
[edit]
[-] CMakeTestCXXCompiler.cmake
[edit]
[-] CMakePackageConfigHelpers.cmake
[edit]
[-] CheckCXXSymbolExists.cmake
[edit]
[-] CMakeParseArguments.cmake
[edit]
[-] CMakeTestCompilerCommon.cmake
[edit]
[-] CMakeParseImplicitIncludeInfo.cmake
[edit]
[-] CMakeTestFortranCompiler.cmake
[edit]
[-] CMakeParseImplicitLinkInfo.cmake
[edit]
[-] CMakeTestGNU.c
[edit]
[-] FindHg.cmake
[edit]
[-] CMakeParseLibraryArchitecture.cmake
[edit]
[-] CheckCompilerFlag.cmake
[edit]
[-] CMakePrintHelpers.cmake
[edit]
[-] CMakeTestISPCCompiler.cmake
[edit]
[-] CMakePrintSystemInformation.cmake
[edit]
[-] CheckForPthreads.c
[edit]
[-] CMakePushCheckState.cmake
[edit]
[-] CheckFortranCompilerFlag.cmake
[edit]
[-] CMakeRCCompiler.cmake.in
[edit]
[-] CheckFortranFunctionExists.cmake
[edit]
[-] CMakeRCInformation.cmake
[edit]
[-] CheckFortranSourceCompiles.cmake
[edit]
[-] CMakeSwiftCompiler.cmake.in
[edit]
[-] CheckFortranSourceRuns.cmake
[edit]
[-] CMakeSwiftInformation.cmake
[edit]
[-] DeployQt4.cmake
[edit]
[-] Dart.cmake
[edit]
[-] CMakeSystemSpecificInformation.cmake
[edit]
[-] FindQt.cmake
[edit]
[-] CheckFunctionExists.c
[edit]
[-] CheckFunctionExists.cmake
[edit]
[-] CheckIPOSupported.cmake
[edit]
[-] CheckIncludeFile.c.in
[edit]
[-] CheckIncludeFile.cmake
[edit]
[-] CheckIncludeFile.cxx.in
[edit]
[-] CheckIncludeFileCXX.cmake
[edit]
[-] CheckIncludeFiles.cmake
[edit]
[-] CheckLanguage.cmake
[edit]
[-] CheckLibraryExists.cmake
[edit]
[-] CheckLibraryExists.lists.in
[edit]
[-] CheckLinkerFlag.cmake
[edit]
[-] CheckOBJCCompilerFlag.cmake
[edit]
[-] CheckOBJCSourceCompiles.cmake
[edit]
[-] CheckOBJCSourceRuns.cmake
[edit]
[-] CheckOBJCXXCompilerFlag.cmake
[edit]
[-] CheckOBJCXXSourceCompiles.cmake
[edit]
[-] CheckOBJCXXSourceRuns.cmake
[edit]
[-] CheckPIESupported.cmake
[edit]
[-] CheckPrototypeDefinition.c.in
[edit]
[-] CheckPrototypeDefinition.cmake
[edit]
[-] CheckSizeOf.cmake
[edit]
[-] CheckSourceCompiles.cmake
[edit]
[-] CheckSourceRuns.cmake
[edit]
[-] CheckStructHasMember.cmake
[edit]
[-] CheckSymbolExists.cmake
[edit]
[-] CheckTypeSize.c.in
[edit]
[-] CheckTypeSize.cmake
[edit]
[-] CheckTypeSizeMap.cmake.in
[edit]
[-] CheckVariableExists.c
[edit]
[-] CheckVariableExists.cmake
[edit]
[-] FindFLTK.cmake
[edit]
[-] DartConfiguration.tcl.in
[edit]
[-] FindGDAL.cmake
[edit]
[-] Documentation.cmake
[edit]
[-] FindGIF.cmake
[edit]
[-] DummyCXXFile.cxx
[edit]
[-] FindGLEW.cmake
[edit]
[-] ExternalData.cmake
[edit]
[-] FindDoxygen.cmake
[edit]
[-] UseQt4.cmake
[edit]
[-] ExternalData_config.cmake.in
[edit]
[-] FindEXPAT.cmake
[edit]
[-] readme.txt
[edit]
[-] FindRuby.cmake
[edit]
[-] FindEnvModules.cmake
[edit]
[-] FindFLEX.cmake
[edit]
[-] FindFLTK2.cmake
[edit]
[-] ExternalProject.cmake
[edit]
[-] FindFontconfig.cmake
[edit]
[-] FLTKCompatibility.cmake
[edit]
[-] FindFreetype.cmake
[edit]
[-] FeatureSummary.cmake
[edit]
[-] FindGLU.cmake
[edit]
[-] FetchContent.cmake
[edit]
[-] FindGLUT.cmake
[edit]
[-] FindALSA.cmake
[edit]
[-] FindGSL.cmake
[edit]
[-] FindASPELL.cmake
[edit]
[-] FindGTK.cmake
[edit]
[-] FindAVIFile.cmake
[edit]
[-] FindGTK2.cmake
[edit]
[-] FindArmadillo.cmake
[edit]
[-] FindGTest.cmake
[edit]
[-] FindBISON.cmake
[edit]
[-] FindGettext.cmake
[edit]
[-] FindBLAS.cmake
[edit]
[-] FindGit.cmake
[edit]
[-] FindBZip2.cmake
[edit]
[-] FindGnuTLS.cmake
[edit]
[-] FindBacktrace.cmake
[edit]
[-] FindGnuplot.cmake
[edit]
[-] FindBoost.cmake
[edit]
[-] FindHDF5.cmake
[edit]
[-] FindBullet.cmake
[edit]
[-] FindHSPELL.cmake
[edit]
[-] FindCABLE.cmake
[edit]
[-] FindHTMLHelp.cmake
[edit]
[-] FindCUDA.cmake
[edit]
[-] FindGCCXML.cmake
[edit]
[-] FindCUDAToolkit.cmake
[edit]
[-] FindICU.cmake
[edit]
[-] FindCURL.cmake
[edit]
[-] FindIce.cmake
[edit]
[-] FindCVS.cmake
[edit]
[-] FindIconv.cmake
[edit]
[-] FindCoin3D.cmake
[edit]
[-] FindIcotool.cmake
[edit]
[-] FindCups.cmake
[edit]
[-] FindImageMagick.cmake
[edit]
[-] FindCurses.cmake
[edit]
[-] FindIntl.cmake
[edit]
[-] FindCxxTest.cmake
[edit]
[-] FindJNI.cmake
[edit]
[-] FindCygwin.cmake
[edit]
[-] FindJPEG.cmake
[edit]
[-] FindDCMTK.cmake
[edit]
[-] FindJasper.cmake
[edit]
[-] FindDart.cmake
[edit]
[-] FindJava.cmake
[edit]
[-] FindDevIL.cmake
[edit]
[-] FindLibArchive.cmake
[edit]
[-] FindKDE3.cmake
[edit]
[-] FindKDE4.cmake
[edit]
[-] FindLAPACK.cmake
[edit]
[-] FindLATEX.cmake
[edit]
[-] FindLTTngUST.cmake
[edit]
[-] FindTclsh.cmake
[edit]
[-] FindLibLZMA.cmake
[edit]
[-] FindThreads.cmake
[edit]
[-] FindLibXml2.cmake
[edit]
[-] FindUnixCommands.cmake
[edit]
[-] FindLibXslt.cmake
[edit]
[-] FindVulkan.cmake
[edit]
[-] FindLibinput.cmake
[edit]
[-] FindWget.cmake
[edit]
[-] FindLua.cmake
[edit]
[-] FindWish.cmake
[edit]
[-] FindLua50.cmake
[edit]
[-] FindX11.cmake
[edit]
[-] FindLua51.cmake
[edit]
[-] FindXCTest.cmake
[edit]
[-] FindMFC.cmake
[edit]
[-] FindXMLRPC.cmake
[edit]
[-] FindMPEG.cmake
[edit]
[-] FindXalanC.cmake
[edit]
[-] FindMPEG2.cmake
[edit]
[-] FindXercesC.cmake
[edit]
[-] FindMPI.cmake
[edit]
[-] FindZLIB.cmake
[edit]
[-] FindMatlab.cmake
[edit]
[-] Findosg.cmake
[edit]
[-] FindMotif.cmake
[edit]
[-] FindosgAnimation.cmake
[edit]
[-] FindODBC.cmake
[edit]
[-] FindosgDB.cmake
[edit]
[-] FindOpenACC.cmake
[edit]
[-] FindosgFX.cmake
[edit]
[-] FindOpenAL.cmake
[edit]
[-] FindosgGA.cmake
[edit]
[-] FindOpenCL.cmake
[edit]
[-] FindosgIntrospection.cmake
[edit]
[-] FindOpenGL.cmake
[edit]
[-] FindosgManipulator.cmake
[edit]
[-] FindOpenMP.cmake
[edit]
[-] FindosgParticle.cmake
[edit]
[-] FindOpenSSL.cmake
[edit]
[-] FindSWIG.cmake
[edit]
[-] FindOpenSceneGraph.cmake
[edit]
[-] FindSelfPackers.cmake
[edit]
[-] FindOpenThreads.cmake
[edit]
[-] FindosgPresentation.cmake
[edit]
[-] FindPHP4.cmake
[edit]
[-] FindosgProducer.cmake
[edit]
[-] FindPNG.cmake
[edit]
[-] InstallRequiredSystemLibraries.cmake
[edit]
[-] FindPackageHandleStandardArgs.cmake
[edit]
[-] FindSquish.cmake
[edit]
[-] FindPackageMessage.cmake
[edit]
[-] FindosgQt.cmake
[edit]
[-] FindPatch.cmake
[edit]
[-] FindosgShadow.cmake
[edit]
[-] FindPerl.cmake
[edit]
[-] FindosgSim.cmake
[edit]
[-] FindPerlLibs.cmake
[edit]
[-] FindosgTerrain.cmake
[edit]
[-] FindPhysFS.cmake
[edit]
[-] FindosgText.cmake
[edit]
[-] FindPike.cmake
[edit]
[-] FindosgUtil.cmake
[edit]
[-] FindPkgConfig.cmake
[edit]
[-] FindSubversion.cmake
[edit]
[-] FindPostgreSQL.cmake
[edit]
[-] FindosgViewer.cmake
[edit]
[-] FindProducer.cmake
[edit]
[-] FindosgVolume.cmake
[edit]
[-] FindProtobuf.cmake
[edit]
[-] FindosgWidget.cmake
[edit]
[-] FindPython.cmake
[edit]
[-] Findosg_functions.cmake
[edit]
[-] FindPython2.cmake
[edit]
[-] FindwxWidgets.cmake
[edit]
[-] FindPython3.cmake
[edit]
[-] FindTCL.cmake
[edit]
[-] FindPythonInterp.cmake
[edit]
[-] FindTIFF.cmake
[edit]
[-] FindPythonLibs.cmake
[edit]
[-] FindwxWindows.cmake
[edit]
[-] FindQt3.cmake
[edit]
[-] FortranCInterface.cmake
[edit]
[-] FindQt4.cmake
[edit]
[-] GNUInstallDirs.cmake
[edit]
[-] FindQuickTime.cmake
[edit]
[-] GenerateExportHeader.cmake
[edit]
[-] FindRTI.cmake
[edit]
[-] GetPrerequisites.cmake
[edit]
[-] GoogleTest.cmake
[edit]
[-] FindSDL.cmake
[edit]
[-] GoogleTestAddTests.cmake
[edit]
[-] FindSDL_image.cmake
[edit]
[-] ITKCompatibility.cmake
[edit]
[-] FindSDL_mixer.cmake
[edit]
[-] MacOSXFrameworkInfo.plist.in
[edit]
[-] FindSDL_net.cmake
[edit]
[-] KDE3Macros.cmake
[edit]
[-] FindSDL_sound.cmake
[edit]
[-] MacOSXBundleInfo.plist.in
[edit]
[-] FindSDL_ttf.cmake
[edit]
[-] MatlabTestsRedirect.cmake
[edit]
[-] FindSQLite3.cmake
[edit]
[-] FindTclStub.cmake
[edit]
[-] MacroAddFileDependencies.cmake
[edit]
[-] ProcessorCount.cmake
[edit]
[-] Qt4ConfigDependentSettings.cmake
[edit]
[-] Qt4Macros.cmake
[edit]
[-] SelectLibraryConfigurations.cmake
[edit]
[-] Squish4RunTestCase.bat
[edit]
[-] Squish4RunTestCase.sh
[edit]
[-] SquishRunTestCase.bat
[edit]
[-] SquishRunTestCase.sh
[edit]
[-] SquishTestScript.cmake
[edit]
[-] SystemInformation.cmake
[edit]
[-] SystemInformation.in
[edit]
[-] TestBigEndian.cmake
[edit]
[-] TestCXXAcceptsFlag.cmake
[edit]
[-] TestEndianess.c.in
[edit]
[-] TestForANSIForScope.cmake
[edit]
[-] TestForANSIStreamHeaders.cmake
[edit]
[-] TestForANSIStreamHeaders.cxx
[edit]
[-] TestForAnsiForScope.cxx
[edit]
[-] TestForSSTREAM.cmake
[edit]
[-] TestForSSTREAM.cxx
[edit]
[-] TestForSTDNamespace.cmake
[edit]
[-] TestForSTDNamespace.cxx
[edit]
[-] UseEcos.cmake
[edit]
[-] UseJava.cmake
[edit]
[-] UsePkgConfig.cmake
[edit]
[-] UseSWIG.cmake
[edit]
[-] Use_wxWindows.cmake
[edit]
[-] UsewxWidgets.cmake
[edit]
[-] VTKCompatibility.cmake
[edit]
[-] WriteBasicConfigVersionFile.cmake
[edit]
[-] WriteCompilerDetectionHeader.cmake
[edit]
[+]
CUDA
[+]
ExternalProject
[-] CMakeTestHIPCompiler.cmake
[edit]
[-] FindMsys.cmake
[edit]
[-] FindOpenSP.cmake
[edit]
[-] FindSDL_gfx.cmake
[edit]
[-] ecos_clean.cmake
[edit]
[-] exportheader.cmake.in
[edit]
[-] kde3init_dummy.cpp.in
[edit]
[-] kde3uic.cmake
[edit]
[-] CMakeASM_MARMASMInformation.cmake
[edit]
[-] CMakeTestASM_MARMASMCompiler.cmake
[edit]
[-] CMakeDetermineASM_MARMASMCompiler.cmake
[edit]
[-] CMakeDetermineHIPCompiler.cmake
[edit]
[-] CMakeFortranCompilerABI.F90
[edit]
[-] CMakeHIPCompiler.cmake.in
[edit]
[-] CMakeHIPCompilerABI.hip
[edit]
[-] CMakeHIPCompilerId.hip.in
[edit]
[-] CMakeHIPInformation.cmake
[edit]