summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle Manna <kyle@kylemanna.com>2015-10-15 13:57:37 -0700
committerKyle Manna <kyle@kylemanna.com>2015-10-15 13:57:37 -0700
commit6cedf928c81885ea9cc5f4e0bed2679384427435 (patch)
tree68c7a87420750dba3b75ff250820a9445dd770b7
parent863dddca69983485fdc3faf58c7dd439d0d5bf5d (diff)
examples: cmake_simple: Use auto discovered path
* No need to specify the src path and the module path. Let cmake do it.
-rw-r--r--examples/cmake_simple/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/cmake_simple/CMakeLists.txt b/examples/cmake_simple/CMakeLists.txt
index 5edfb61f..e5f33a02 100644
--- a/examples/cmake_simple/CMakeLists.txt
+++ b/examples/cmake_simple/CMakeLists.txt
@@ -1,8 +1,7 @@
cmake_minimum_required(VERSION 2.8)
project(NANOPB_CMAKE_SIMPLE C)
-set(NANOPB_SRC_ROOT_FOLDER ${CMAKE_CURRENT_SOURCE_DIR}/../..)
-set(CMAKE_MODULE_PATH ${NANOPB_SRC_ROOT_FOLDER}/extra)
+set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../extra)
find_package(Nanopb REQUIRED)
include_directories(${NANOPB_INCLUDE_DIRS})