Skip to content

Commit

Permalink
fix path for config files
Browse files Browse the repository at this point in the history
  • Loading branch information
2208loki committed Oct 27, 2024
1 parent 5360845 commit 7bb002d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/build/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions examples/build/cmake/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7bb002d

Please sign in to comment.