Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Source/Effects/FsTouchDrawCenter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ project("TouchDrawCenter")
# Set the plugin specific source files
set(${PROJECT_NAME}_SOURCES
TouchDrawCenter.cpp
ToutchDraw8.cpp
Comment thread
Hashory marked this conversation as resolved.
ToutchDraw16.cpp
ToutchDraw32.cpp
ToutchDraw8.cpp
alphaBlur8.cpp
alphaBlur16.cpp
alphaBlur32.cpp
copyImage.cpp
)

# Call the common plugin build function
Expand Down
6 changes: 4 additions & 2 deletions Source/Effects/FsTouchDrawCenter/TouchDrawCenter.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@

// clang-format off
#include "TouchDrawCenter.h"
#include "Fs_Entry.h"
// clang-format on

// Pass parameters to After Effects
Expand Down Expand Up @@ -347,3 +345,7 @@ static PF_Err SmartRender(PF_InData* in_data, PF_OutData* out_data,
return err;
}
#endif

// clang-format off
#include "Fs_Entry.h"
// clang-format on
2 changes: 1 addition & 1 deletion prev-build-process.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ add_subdirectory("Source/Effects/FsToGray")
add_subdirectory("Source/Effects/FsTone")
add_subdirectory("Source/Effects/FsToner")
# add_subdirectory("Source/Effects/FsTouchDraw") # Link error
# add_subdirectory("Source/Effects/FsTouchDrawCenter") # Link error
add_subdirectory("Source/Effects/FsTouchDrawCenter")
# add_subdirectory("Source/Effects/FsTouchDrawStraght") # Link error
# add_subdirectory("Source/Effects/FsUnmult_KNSW_Fake") # Compile error
# add_subdirectory("Source/Effects/FsUnmult_RG_Fake") # Compile error
Expand Down
Loading