Skip to content
Snippets Groups Projects
Select Git revision
  • b1d2f9675a0723797783824ad3aa447c2bed49cc
  • main default protected
  • old_beta_site
  • smart_caching
  • 51-endpoint-course-slow-to-load
  • dork
  • dork2
  • v2.0.8 protected
  • v2.0.7 protected
  • v2.0.6 protected
  • v2.0.5 protected
  • v2.0.4 protected
  • v2.0.3 protected
  • v2.0.2 protected
  • v2.0.1 protected
  • v2.0.0 protected
  • v1.1.10 protected
  • v1.1.9 protected
  • v1.1.8 protected
  • v1.1.7 protected
  • v1.1.6 protected
  • v1.1.5 protected
  • v1.1.4 protected
  • v1.1.3 protected
  • v1.1.2 protected
  • v1.1.1 protected
  • v1.1 protected
27 results

index.tsx

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    CalamaresUse.cmake.in 980 B
    # A setup-cmake-things-for-Calamares module.
    #
    # This module handles looking for dependencies and including
    # all of the Calamares macro modules, so that you can focus
    # on just using the macros to build Calamares modules.
    # Typical use looks like this:
    #
    # ```
    # find_package( Calamares REQUIRED )
    # include( "${CALAMARES_CMAKE_DIR}/CalamaresUse.cmake" )
    # ```
    #
    # The first CMake command finds Calamares (which will contain
    # this file), then adds the found location to the search path,
    # and then includes this file. After that, you can use
    # Calamares module and plugin macros.
    
    if( NOT CALAMARES_CMAKE_DIR )
        message( FATAL_ERROR "Use find_package(Calamares) first." )
    endif()
    set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CALAMARES_CMAKE_DIR} )
    
    find_package( Qt5 @QT_VERSION@ CONFIG REQUIRED Core Widgets LinguistTools )
    
    include( CalamaresAddLibrary )
    include( CalamaresAddModuleSubdirectory )
    include( CalamaresAddPlugin )
    include( CalamaresAddBrandingSubdirectory )