Browse Source

Merge branch 'v1' of github.com:VCVRack/Rack into v1

tags/v1.1.3
Andrew Belt 5 years ago
parent
commit
725bb63949
4 changed files with 9 additions and 8 deletions
  1. +1
    -1
      Core.json
  2. +4
    -4
      Makefile
  3. +1
    -1
      dep/Makefile
  4. +3
    -2
      src/main.cpp

+ 1
- 1
Core.json View File

@@ -1,7 +1,7 @@
{ {
"slug": "Core", "slug": "Core",
"name": "Core", "name": "Core",
"version": "1.0.0",
"version": "1.1.2",
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
"author": "VCV", "author": "VCV",
"brand": "VCV", "brand": "VCV",


+ 4
- 4
Makefile View File

@@ -1,6 +1,6 @@
RACK_DIR ?= . RACK_DIR ?= .
VERSION := 1.dev.$(shell git rev-parse --short HEAD)
# VERSION := 1.1.1
# VERSION := 1.dev.$(shell git rev-parse --short HEAD)
VERSION := 1.1.2


FLAGS += -DVERSION=$(VERSION) FLAGS += -DVERSION=$(VERSION)
FLAGS += -Iinclude -Idep/include FLAGS += -Iinclude -Idep/include
@@ -38,8 +38,8 @@ endif
ifdef ARCH_WIN ifdef ARCH_WIN
SOURCES += dep/osdialog/osdialog_win.c SOURCES += dep/osdialog/osdialog_win.c
LDFLAGS += -Wl,--export-all-symbols,--out-implib,libRack.a -mwindows \ LDFLAGS += -Wl,--export-all-symbols,--out-implib,libRack.a -mwindows \
dep/lib/libglew32.a dep/lib/libglfw3.a dep/lib/libjansson.a dep/lib/libspeexdsp.a dep/lib/libzip.a dep/lib/libz.a dep/lib/libcurl.a dep/lib/libssl.a dep/lib/libcrypto.a dep/lib/librtaudio.a dep/lib/librtmidi.a \
-lpthread -lopengl32 -lgdi32 -lws2_32 -lcomdlg32 -lole32 -ldsound -lwinmm -lksuser -lshlwapi -lmfplat -lmfuuid -lwmcodecdspuuid -ldbghelp
dep/lib/libglew32.a dep/lib/libglfw3.a dep/lib/libjansson.a dep/lib/libspeexdsp.a dep/lib/libzip.a dep/lib/libz.a dep/lib/libcurl.a dep/lib/librtaudio.a dep/lib/librtmidi.a \
-lpthread -lopengl32 -lgdi32 -lws2_32 -lcomdlg32 -lole32 -lcrypt32 -ldsound -lwinmm -lksuser -lshlwapi -lmfplat -lmfuuid -lwmcodecdspuuid -ldbghelp
TARGET := Rack.exe TARGET := Rack.exe
OBJECTS += Rack.res OBJECTS += Rack.res
endif endif


+ 1
- 1
dep/Makefile View File

@@ -132,7 +132,7 @@ CURL_FLAGS += --with-ssl="$(DEP_PATH)"
CURL_DEPS += $(openssl) CURL_DEPS += $(openssl)
endif endif
ifdef ARCH_WIN ifdef ARCH_WIN
CURL_FLAGS += --with-schannel
CURL_FLAGS += --with-schannel --without-ssl
endif endif


$(libcurl): $(CURL_DEPS) curl-7.64.1 $(libcurl): $(CURL_DEPS) curl-7.64.1


+ 3
- 2
src/main.cpp View File

@@ -56,6 +56,9 @@ int main(int argc, char *argv[]) {
exit(1); exit(1);
} }
(void) instanceMutex; (void) instanceMutex;

// Don't display "Assertion failed!" dialog message.
_set_error_mode(_OUT_TO_STDERR);
#endif #endif


std::string patchPath; std::string patchPath;
@@ -98,7 +101,6 @@ int main(int argc, char *argv[]) {
logger::init(); logger::init();


// We can now install a signal handler and log the output // We can now install a signal handler and log the output
#if defined ARCH_LIN || defined ARCH_MAC
if (!settings::devMode) { if (!settings::devMode) {
signal(SIGABRT, fatalSignalHandler); signal(SIGABRT, fatalSignalHandler);
signal(SIGFPE, fatalSignalHandler); signal(SIGFPE, fatalSignalHandler);
@@ -106,7 +108,6 @@ int main(int argc, char *argv[]) {
signal(SIGSEGV, fatalSignalHandler); signal(SIGSEGV, fatalSignalHandler);
signal(SIGTERM, fatalSignalHandler); signal(SIGTERM, fatalSignalHandler);
} }
#endif


// Log environment // Log environment
INFO("%s v%s", app::APP_NAME.c_str(), app::APP_VERSION.c_str()); INFO("%s v%s", app::APP_NAME.c_str(), app::APP_VERSION.c_str());


Loading…
Cancel
Save