Skip to content

Commit

Permalink
Merge pull request #547 from 2208loki/example-cmake-fix
Browse files Browse the repository at this point in the history
fixing the path for config files
  • Loading branch information
danielaparker authored Oct 28, 2024
2 parents 5360845 + 7bb002d commit 03af63f
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 03af63f

Please sign in to comment.