wxWidgets/build/cmake
Pedro Vicente 26795b7432 Use C++11 by default in CMake build under macOS
Force the use of C++11 standard on macOS to avoid C++11 specific
warnings with clang.

Closes https://github.com/wxWidgets/wxWidgets/pull/2374
2021-05-22 21:30:10 +01:00
..
benchmarks CMake: Add benchmarks 2021-02-07 20:34:42 +01:00
demos
lib adding missing framwork to CMake 2021-04-03 22:32:34 +02:00
modules Don't require X11 in CMake builds using Wayland-only GTK 2021-03-01 13:32:57 +01:00
samples
tests Add wxImage Change{Saturation,Brightness,HSV,Lightness}() 2021-05-01 14:03:04 +02:00
utils
config.cmake CMake: don't include libc.so in wx-config 2021-05-16 22:43:50 +02:00
files.cmake
functions.cmake Fix an issue that MSVC 2019 cannot compile with CMake 2021-05-19 19:48:04 +02:00
init.cmake Adding GLKit to console and cmake builds 2021-03-15 14:09:07 +01:00
install.cmake
main.cmake CMake: Add benchmarks 2021-02-07 20:34:42 +01:00
options.cmake Use C++11 by default in CMake build under macOS 2021-05-22 21:30:10 +01:00
policies.cmake
README.md
setup.cmake Remove "basic STL functionality" configure and CMake checks 2021-03-22 18:38:10 +01:00
setup.h.in Fix checking __MINGW64_VERSION_MAJOR for wxUSE_WEBREQUEST_WINHTTP 2021-03-23 00:39:16 +01:00
source_groups.cmake
toolkit.cmake Don't require X11 in CMake builds using Wayland-only GTK 2021-03-01 13:32:57 +01:00
uninstall.cmake.in

This directory contains CMake files needed to build native build files for wxWidgets.

For building wxWidgets or using wxWidgets in your CMake project please see the CMake overview in the wxWidgets documentation.

CMake files organization

All CMake files are located in $(wx)/build/cmake additionally there is a CMakeLists.txt in the root directory.

Files

  • $(wx)/CMakeLists.txt
    • This should only contain commands and definitions which need to be contained in the top level and includes main.cmake
  • config.cmake
    • Generates config files used to find wxWidgets by other build systems
    • Creates wx-config
  • files.cmake
    • List of source files generated by $(wx)build/upmake from $(wx)build/files
    • This file should usually never be edited manually
    • However if a new group of files is added it needs to be edited manually
  • functions.cmake
    • contains various wxWidgets specific functions and macros used throughout the CMake files
    • Every function should contain a short description of it's parameters as a comment before the function/macro
  • install.cmake
    • Handles definitions for the install and uninstall target
  • init.cmake
    • Initializes various variables used during the build process and for generation of setup.h and configuration files
  • main.cmake
    • Includes all other cmake files
  • options.cmake
    • All user selectable build options should be defined in this file via calls to wx_option()
  • policies.cmake
  • setup.cmake
    • Handles all tests required to create the setup.h header based platform and user settings
  • setup.h.in
    • Template for setup.h updated automatically by $(wx)/build/update-setup-h
  • source_groups.cmake
    • Define source groups used in supported IDEs
  • toolkit.cmake
    • Define toolkit specific options and detection to this file
  • uninstall.cmake.in
    • Used by install.cmake when creating the uninstall target

Sub directories

Each sub directory contains a CMakeLists.txt and might contain various other .cmake files.

  • demos
    • Defines build targets for demos via wx_add_demo()
  • lib
    • Defines build targets for all libraries and bundle third party libraries
    • Each library is contained in a separate directory and uses wx_add_library() to define the library target
    • Bundled third party library without upstream CMake support are defined in a .cmake file using wx_add_builtin_library() to define static library targets
  • modules
    • Includes CMake modules used to find third party packages via find_package()
    • Includes the cotire module used to for precompiled header generation
  • samples
    • Defines build targets for all samples via wx_add_sample()
    • Definitions for trivial samples are included in CMakeLists.txt more complex samples might have a separate .cmake file
  • tests
    • Defines build targets for all tests
  • utils
    • Defines build targets for all utilities