Browse Source

Add -lcrypto to Mac/Windows build

tags/v0.5.1
Andrew Belt 6 years ago
parent
commit
e042f823b6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile View File

@@ -23,7 +23,7 @@ ifeq ($(ARCH), mac)
CXXFLAGS += -DAPPLE -stdlib=libc++
LDFLAGS += -stdlib=libc++ -lpthread -ldl \
-framework Cocoa -framework OpenGL -framework IOKit -framework CoreVideo \
-Ldep/lib -lGLEW -lglfw -ljansson -lsamplerate -lcurl -lzip -lrtaudio -lrtmidi
-Ldep/lib -lGLEW -lglfw -ljansson -lsamplerate -lcurl -lzip -lrtaudio -lrtmidi -lcrypto
TARGET = Rack
BUNDLE = dist/$(TARGET).app
endif
@@ -34,7 +34,7 @@ ifeq ($(ARCH), win)
-Wl,--export-all-symbols,--out-implib,libRack.a -mwindows \
-lgdi32 -lopengl32 -lcomdlg32 -lole32 \
-Ldep/lib -lglew32 -lglfw3dll -lcurl -lzip -lrtaudio -lrtmidi \
-Wl,-Bstatic -ljansson -lsamplerate
-Wl,-Bstatic -ljansson -lsamplerate -lcrypto
TARGET = Rack.exe
OBJECTS = Rack.res
endif


Loading…
Cancel
Save