Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions all/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions cmake/options.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
1 change: 1 addition & 0 deletions standalone/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ project(GreeterStandalone LANGUAGES CXX)

# --- Import tools ----

include(../cmake/options.cmake)
include(../cmake/tools.cmake)

# ---- Dependencies ----
Expand Down
1 change: 1 addition & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 ----
Expand Down