From f76aa76a815343a9ae36c1a59c4d609c99539608 Mon Sep 17 00:00:00 2001 From: Claus Klein Date: Tue, 16 Feb 2021 12:42:20 +0100 Subject: [PATCH] Update CMakeLists.txt Co-authored-by: Lars Melchior --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7cf27a6..21b7733 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ file(GLOB_RECURSE sources CONFIGURE_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/source/ # ---- Create library ---- # Note: for header-only libraries change all PUBLIC flags to INTERFACE and create an interface -# target! EITHER: add_library(Greeter INTERFACE) OR: +# target: add_library(Greeter INTERFACE) add_library(Greeter ${headers} ${sources}) # EITHER: set_target_properties(Greeter PROPERTIES CXX_STANDARD 17) # OR: