From 9b15010933ea798630fd57ae0d31d6b9eb5af3bd Mon Sep 17 00:00:00 2001 From: zhaowq32 Date: Mon, 18 Dec 2023 22:26:16 +0800 Subject: [PATCH 1/2] for unix platform, define install directories. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 452ee407..4ef0d5c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,6 +17,9 @@ project(miniocpp) cmake_minimum_required(VERSION 3.10) +# for unix platform, define install directories. +include(GNUInstallDirs) + macro(set_globals) set(CMAKE_BUILD_TYPE_INIT Release) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) From c2be42d4f68e25020e11094263da5e8ba9a954c3 Mon Sep 17 00:00:00 2001 From: Bala FA Date: Fri, 23 Feb 2024 11:34:34 +0530 Subject: [PATCH 2/2] Update CMakeLists.txt --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ef0d5c0..f2b81c3f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,6 @@ project(miniocpp) cmake_minimum_required(VERSION 3.10) -# for unix platform, define install directories. include(GNUInstallDirs) macro(set_globals)