Skip to content

Commit 6863c6a

Browse files
committed
fixes merge to master
2 parents 7ca80b4 + 650deef commit 6863c6a

File tree

6 files changed

+37
-3
lines changed

6 files changed

+37
-3
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,11 @@ ofxBTrack original addon by [Nao Tokui](https://github.com/naotokui)
391391
ofxChromaKeyShader original addon by [Eric Koo](https://github.com/musiko)
392392

393393
ofxCv original addons by [Kyle McDonald](https://github.com/kylemcdonald)
394+
<<<<<<< HEAD
395+
=======
396+
397+
ofxDatGui, ofxParagraph original addons by [Stephen Braitsch](https://github.com/braitsch)
398+
>>>>>>> master
394399
395400
ofxEasing original addon by [Arturo Castro](https://github.com/arturoc)
396401

addon_config.mk

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,14 @@ common:
2626
# or use += in several lines
2727
ADDON_DEPENDENCIES = ofxAssimpModelLoader ofxGui ofxKinect ofxNetwork ofxOpenCv ofxOsc ofxSvg ofxVectorGraphics ofxXmlSettings
2828
ADDON_DEPENDENCIES += ofxAudioAnalyzer ofxAudioFile ofxBTrack ofxChromaKeyShader ofxCv ofxEasing ofxFFmpegRecorder ofxFontStash ofxGLEditor
29+
<<<<<<< HEAD
2930
ADDON_DEPENDENCIES += ofxJSON ofxInfiniteCanvas ofxLua ofxMidi ofxMtlMapping2D
3031
ADDON_DEPENDENCIES += ofxPDSP ofxTimeline ofxWarp
3132
ADDON_DEPENDENCIES += ofxImGui
33+
=======
34+
ADDON_DEPENDENCIES += ofxDatGui ofxHistoryPlot ofxJSON ofxInfiniteCanvas ofxLua ofxMidi ofxMtlMapping2D ofxParagraph
35+
ADDON_DEPENDENCIES += ofxPDSP ofxThreadedFileDialog ofxTimeline ofxTimeMeasurements ofxWarp
36+
>>>>>>> master
3237

3338
# include search paths, this will be usually parsed from the file system
3439
# but if the addon or addon libraries need special search paths they can be
@@ -73,10 +78,20 @@ common:
7378
# ADDON_INCLUDES_EXCLUDE =
7479

7580
linux64:
81+
<<<<<<< HEAD
7682
ADDON_DEPENDENCIES += ofxPd ofxPdExternals ofxPython ofxNDI
7783

7884
msys2:
7985
ADDON_SOURCES_EXCLUDE = src/objects/scripting/BashScript% src/objects/scripting/PythonScript% src/objects/sound/PDPatch% src/objects/video/VideoSender% src/objects/video/VideoReceiver%
8086

8187
osx:
8288
ADDON_DEPENDENCIES += ofxPd ofxPdExternals ofxPython ofxNDI
89+
=======
90+
ADDON_DEPENDENCIES += ofxJava ofxPd ofxPdExternals ofxPython ofxNDI
91+
92+
msys2:
93+
ADDON_SOURCES_EXCLUDE = src/objects/scripting/BashScript% src/objects/scripting/ProcessingScript% src/objects/scripting/PythonScript% src/objects/sound/PDPatch% src/objects/video/VideoSender% src/objects/video/VideoReceiver%
94+
95+
osx:
96+
ADDON_DEPENDENCIES += ofxJava ofxPd ofxPdExternals ofxPython ofxNDI
97+
>>>>>>> master

src/objects/scripting/PythonScript.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@
3232

3333
#if defined(TARGET_WIN32)
3434
// Unavailable on windows.
35+
<<<<<<< HEAD
3536
#elif !defined(OFXVP_BUILD_WITH_MINIMAL_OBJECTS)
37+
=======
38+
#else
39+
>>>>>>> master
3640

3741
#include "PythonScript.h"
3842

src/objects/scripting/PythonScript.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636

3737
#pragma once
3838

39+
#if defined(TARGET_WIN32)
40+
// Unavailable on windows.
41+
#else
42+
3943
#include "PatchObject.h"
4044

4145
#include "ofxPython.h"

src/objects/sound/PDPatch.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@
3232

3333
#if defined(TARGET_WIN32)
3434
// Unavailable on windows.
35+
<<<<<<< HEAD
3536
#elif !defined(OFXVP_BUILD_WITH_MINIMAL_OBJECTS)
37+
=======
38+
#else
39+
>>>>>>> master
3640

3741
#include "PDPatch.h"
3842

src/objects/sound/PDPatch.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@
3232

3333
#if defined(TARGET_WIN32)
3434
// Unavailable on windows.
35+
<<<<<<< HEAD
3536
#elif !defined(OFXVP_BUILD_WITH_MINIMAL_OBJECTS)
37+
=======
38+
#else
39+
>>>>>>> master
3640

3741
#pragma once
3842

@@ -42,9 +46,7 @@
4246
#include "IconsFontAwesome5.h"
4347

4448
#include "ofxPd.h"
45-
#if defined(TARGET_LINUX) || defined(TARGET_OSX)
46-
#include "ofxPdExternals.h"
47-
#endif
49+
#include "ofxPdExternals.h"
4850

4951

5052
using namespace pd;

0 commit comments

Comments
 (0)