Skip to content

Instantly share code, notes, and snippets.

View MicrogamerCz's full-sized avatar

Micro MicrogamerCz

  • Czech Republic
  • 16:08 (UTC +01:00)
View GitHub Profile
@alexreinking
alexreinking / CMakeLists.txt
Created February 15, 2023 16:48
Basic executable packaging/export example in CMake
cmake_minimum_required(VERSION 3.25)
project(example VERSION 0.1.0)
add_executable(example main.cpp)
add_executable(example::example ALIAS example)
include(GNUInstallDirs)
include(CMakePackageConfigHelpers)
set(EXAMPLE_INSTALL_CMAKEDIR "${CMAKE_INSTALL_DATADIR}/cmake/Example"