Skip to content

Commit 29bddae

Browse files
committed
Merge pull request #516 from cchampet/removeDPXReaderPlugin
Remove dpx reader plugin. It was not built since...v0.1.0!
2 parents 02c1a8a + 9cdc617 commit 29bddae

File tree

14 files changed

+4
-1737
lines changed

14 files changed

+4
-1737
lines changed
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
# Macros used to create an openfx plugin with tuttle
22
include(TuttleMacros)
33

4-
# Find files for this plugin
5-
file(GLOB_RECURSE COLORBARS_SRC_FILES src/*.cpp src/*.tcc)
6-
74
# Declare the plugin
8-
tuttle_ofx_plugin_target(ColorBars "${COLORBARS_SRC_FILES}")
9-
10-
5+
tuttle_ofx_plugin_target(ColorBars)
Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
# Macros used to create an openfx plugin with tuttle
22
include(TuttleMacros)
33

4-
# Declare the plugin
5-
# TODO : the reader is not taken into account.
6-
# if it is permanent, remove it from git
7-
file(GLOB_RECURSE WRITER_PLUGIN_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/src/writer/*.?pp)
8-
file(GLOB_RECURSE DPX_PLUGIN_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/src/dpx-google-code/*.cpp)
9-
include_directories(src/dpx-google-code)
4+
tuttle_ofx_plugin_target(Dpx "" True)
105

11-
set(DPX_PLUGIN_SOURCES ${WRITER_PLUGIN_SOURCES} ${DPX_PLUGIN_SOURCES} src/mainEntry.cpp)
12-
tuttle_ofx_plugin_target(Dpx "${DPX_PLUGIN_SOURCES}" TRUE)
6+
# Add include of dpx-google-code only to DPX plugin
7+
target_include_directories(Dpx PUBLIC "src/dpx-google-code")
138

149
# Add external libraries
1510
tuttle_ofx_plugin_add_libraries(Dpx sequenceParser)

plugins/image/io/Dpx/src/mainEntry.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
#define OFXPLUGIN_VERSION_MINOR 0
33

44
#include <tuttle/plugin/Plugin.hpp>
5-
//#include "reader/DPXReaderPluginFactory.hpp"
65
#include "writer/DPXWriterPluginFactory.hpp"
76

87
namespace OFX
@@ -11,7 +10,6 @@ namespace Plugin
1110
{
1211
void getPluginIDs( OFX::PluginFactoryArray& ids )
1312
{
14-
//mAppendPluginFactory( ids, tuttle::plugin::dpx::reader::DPXReaderPluginFactory, "tuttle.dpxreader" );
1513
mAppendPluginFactory( ids, tuttle::plugin::dpx::writer::DPXWriterPluginFactory, "tuttle.dpxwriter" );
1614
}
1715

plugins/image/io/Dpx/src/reader/DPXReaderDefinitions.hpp

Lines changed: 0 additions & 19 deletions
This file was deleted.

plugins/image/io/Dpx/src/reader/DPXReaderPlugin.cpp

Lines changed: 0 additions & 160 deletions
This file was deleted.

plugins/image/io/Dpx/src/reader/DPXReaderPlugin.hpp

Lines changed: 0 additions & 40 deletions
This file was deleted.

plugins/image/io/Dpx/src/reader/DPXReaderPluginFactory.cpp

Lines changed: 0 additions & 81 deletions
This file was deleted.

plugins/image/io/Dpx/src/reader/DPXReaderPluginFactory.hpp

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)