Browse Source

Fix bridges

tags/1.9.4
falkTX 12 years ago
parent
commit
79cff5b5c2
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      source/bridges/Makefile

+ 4
- 0
source/bridges/Makefile View File

@@ -528,7 +528,11 @@ LIBS_NATIVE += \
endif

carla-bridge-native: $(OBJS_NATIVE) $(LIBS_NATIVE)
ifeq ($(MACOS),true)
$(CXX) $(OBJS_NATIVE) $(LIBS_NATIVE) $(NATIVE_LINK_FLAGS) -o $@
else
$(CXX) $(OBJS_NATIVE) -Wl,--start-group $(LIBS_NATIVE) -Wl,--end-group $(NATIVE_LINK_FLAGS) -o $@
endif

%__native.o: %.cpp
$(CXX) $< $(NATIVE_BUILD_FLAGS) -c -o $@


Loading…
Cancel
Save