This is an automated email from the ASF dual-hosted git repository. ccollins pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-mcumgr.git
commit 75c5f1a7c3842f75c130a41a837157cfad2854e0 Author: Christopher Collins <[email protected]> AuthorDate: Mon Feb 12 13:17:22 2018 -0800 smp_svr/CMakeLists.txt: remove set_conf_file macro This macro is unnecessary. It was a leftover from the original CMakeLists.txt file used as a template. --- samples/smp_svr/zephyr/CMakeLists.txt | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/samples/smp_svr/zephyr/CMakeLists.txt b/samples/smp_svr/zephyr/CMakeLists.txt index b61b8ea..7765cb4 100644 --- a/samples/smp_svr/zephyr/CMakeLists.txt +++ b/samples/smp_svr/zephyr/CMakeLists.txt @@ -7,17 +7,6 @@ # This provides a basic application structure suitable for communication using # mcumgr. It can be used as a starting point for new applications. -# The default top-level application configuration is prj.conf. You can place -# additional board-specific files in boards/${BOARD}.conf, and they will be -# merged into the configuration along with prj.conf. -macro(set_conf_file) - if(EXISTS ${APPLICATION_SOURCE_DIR}/boards/${BOARD}.conf) - set(CONF_FILE "prj.conf ${APPLICATION_SOURCE_DIR}/boards/${BOARD}.conf") - else() - set(CONF_FILE "prj.conf") - endif() -endmacro() - # Zephyr uses Device Tree (DT) to describe some board hardware configuration. # # See the Zephyr documentation for more information on DT: -- To stop receiving notification emails like this one, please contact [email protected].
