| @@ -67,6 +67,7 @@ source/tests/ANSI | |||||
| source/tests/Base64 | source/tests/Base64 | ||||
| source/tests/CarlaString | source/tests/CarlaString | ||||
| source/tests/Print | source/tests/Print | ||||
| source/tests/Rewire.cpp | |||||
| source/tests/RtList | source/tests/RtList | ||||
| source/tests/Thread | source/tests/Thread | ||||
| source/tests/Utils | source/tests/Utils | ||||
| @@ -118,6 +119,6 @@ source/backend/native/zynaddsubfx/UI/VirKeyboard.cpp | |||||
| source/backend/native/zynaddsubfx/UI/VirKeyboard.h | source/backend/native/zynaddsubfx/UI/VirKeyboard.h | ||||
| # Other | # Other | ||||
| source/includes/rewire/ | |||||
| source/includes/vst/ | source/includes/vst/ | ||||
| source/includes/vst3/ | source/includes/vst3/ | ||||
| source/libs/jackbridge/jack | |||||
| @@ -16,7 +16,7 @@ | |||||
| #include "CarlaDefines.hpp" | #include "CarlaDefines.hpp" | ||||
| // don't include the whole JACK deal in this file | |||||
| // don't include the whole JACK API in this file | |||||
| CARLA_EXPORT bool jackbridge_sem_post(void* sem); | CARLA_EXPORT bool jackbridge_sem_post(void* sem); | ||||
| CARLA_EXPORT bool jackbridge_sem_timedwait(void* sem, int secs); | CARLA_EXPORT bool jackbridge_sem_timedwait(void* sem, int secs); | ||||
| @@ -80,3 +80,5 @@ bool jackbridge_sem_timedwait(void* sem, int secs) | |||||
| # endif | # endif | ||||
| } | } | ||||
| #endif | #endif | ||||
| // ----------------------------------------------------------------------------- | |||||
| @@ -29,7 +29,7 @@ WINE_32BIT_FLAGS = $(32BIT_FLAGS) -L/usr/lib32/wine -L/usr/lib/i386-linux-gnu/wi | |||||
| WINE_64BIT_FLAGS = $(64BIT_FLAGS) -L/usr/lib64/wine -L/usr/lib/x86_64-linux-gnu/wine | WINE_64BIT_FLAGS = $(64BIT_FLAGS) -L/usr/lib64/wine -L/usr/lib/x86_64-linux-gnu/wine | ||||
| WINE_LINK_FLAGS = $(LINK_FLAGS) -ldl -lrt -lpthread -ljack | WINE_LINK_FLAGS = $(LINK_FLAGS) -ldl -lrt -lpthread -ljack | ||||
| OBJS = JackBridge2.cpp JackBridge1.cpp | |||||
| OBJS = JackBridge1.cpp JackBridge2.cpp | |||||
| # -------------------------------------------------------------- | # -------------------------------------------------------------- | ||||
| @@ -41,6 +41,9 @@ Print: Print.cpp | |||||
| Utils: Utils.cpp | Utils: Utils.cpp | ||||
| $(CXX) $^ $(BUILD_CXX_FLAGS) $(LINK_FLAGS) -o $@ | $(CXX) $^ $(BUILD_CXX_FLAGS) $(LINK_FLAGS) -o $@ | ||||
| Rewire.exe: Rewire.cpp | |||||
| $(CXX) $^ $(BUILD_CXX_FLAGS) $(LINK_FLAGS) -lversion -o $@ | |||||
| RUN: $(TARGETS) | RUN: $(TARGETS) | ||||
| # valgrind ./Base64 | # valgrind ./Base64 | ||||
| # ./ANSI | # ./ANSI | ||||