1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 13:41:13 +02:00
This commit is contained in:
Rober Morales-Chaparro 2025-03-26 20:54:23 +00:00 committed by GitHub
commit 5fd35526c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 0 deletions

View file

@ -5,6 +5,7 @@ cmake_minimum_required(VERSION 3.14...3.22)
project(BuildAll LANGUAGES CXX)
include(../cmake/options.cmake)
include(../cmake/tools.cmake)
# needed to generate test target

1
cmake/options.cmake Normal file
View file

@ -0,0 +1 @@
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

View file

@ -4,6 +4,7 @@ project(GreeterStandalone LANGUAGES CXX)
# --- Import tools ----
include(../cmake/options.cmake)
include(../cmake/tools.cmake)
# ---- Dependencies ----

View file

@ -9,6 +9,7 @@ option(TEST_INSTALLED_VERSION "Test the version found by find_package" OFF)
# --- Import tools ----
include(../cmake/options.cmake)
include(../cmake/tools.cmake)
# ---- Dependencies ----