From 828084690f8ded8f95ad1138f811bfc877f67713 Mon Sep 17 00:00:00 2001 From: Clement Champetier Date: Mon, 18 Apr 2016 18:11:24 +0200 Subject: [PATCH] CMake: define ofxPlugins target in CMakeLists of plugins --- CMakeLists.txt | 3 --- plugins/CMakeLists.txt | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9548127ad..1f683fd57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,9 +23,6 @@ endif() # Diplay commands being ran by CMake set(CMAKE_VERBOSE_MAKEFILE OFF) -# Create an alias for all OFX plugins. -add_custom_target(ofxPlugins) - # Include subdirs set(SEQUENCEPARSER_PYTHON_VERSION ${TUTTLE_PYTHON_VERSION}) add_subdirectory(libraries/sequenceParser) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 37cabae8b..aaa9cf26d 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -1,6 +1,9 @@ set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) +# Create an alias for all OFX plugins. +add_custom_target(ofxPlugins) + add_subdirectory(image/io/AudioVideo) add_subdirectory(image/display/ColorCubeViewer) add_subdirectory(image/display/Histogram)