From 7bb002dc59b6a29f85446716c27030b319d2f046 Mon Sep 17 00:00:00 2001 From: Lokesh <2208loki@gmail.com> Date: Mon, 28 Oct 2024 00:10:07 +0530 Subject: [PATCH] fix path for config files --- examples/build/cmake/CMakeLists.txt | 4 ++-- examples/build/cmake/README.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/build/cmake/CMakeLists.txt b/examples/build/cmake/CMakeLists.txt index 5f263ea0c2..5f4b95b8a3 100755 --- a/examples/build/cmake/CMakeLists.txt +++ b/examples/build/cmake/CMakeLists.txt @@ -6,13 +6,13 @@ cmake_minimum_required (VERSION 2.8) # load global config -include (../../../build/cmake/config.cmake) +include (../../build/cmake/Config.cmake) project (Examples CXX) # load per-platform configuration -include (../../../build/cmake/${CMAKE_SYSTEM_NAME}.cmake) +include (../../build/cmake/${CMAKE_SYSTEM_NAME}.cmake) include_directories (../../include ../../../include) diff --git a/examples/build/cmake/README.txt b/examples/build/cmake/README.txt index bdedd5d9bd..99af48d47a 100644 --- a/examples/build/cmake/README.txt +++ b/examples/build/cmake/README.txt @@ -13,6 +13,7 @@ run_examples_vc140x64.cmd UNIX From the examples/build/cmake directory +include Config.cmake and Linux.cmake as CMakeLists.txt expects it. mkdir -p debug cd debug