Allow adding plugins temporarily without modifying plugins/CMakeLists.txt

Useful to avoid issues when switching between branches that modify
plugins/CMakeLists.txt
develop
lethosor 2015-11-17 17:38:53 -05:00
parent 9c4fc64ac5
commit 67aed56183
3 changed files with 6 additions and 1 deletions

2
.gitignore vendored

@ -73,4 +73,4 @@ tags
.DS_Store
# autogenerated include-all.rst files
**include-all.rst
**include-all.rst

@ -0,0 +1,3 @@
# You can add custom plugins here to avoid touching plugins/CMakeLists.txt,
# This can be useful if you've made modifications to that file and try to
# switch between branches that have also made modifications to it.

@ -180,3 +180,5 @@ OPTION(BUILD_SKELETON "Build the skeleton plugin." OFF)
if(BUILD_SKELETON)
add_subdirectory(skeleton)
endif()
INCLUDE(CMakeLists.custom.txt)