summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-07 14:15:01 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-07 14:15:01 +0200
commitc0a5494de53f66d75c98c553cf61e32a5a8d5076 (patch)
treeb1c1685c84e261795bf37a0c9969f80c9fdab705 /makefile
parent85f4741fcf642f52ac4fa56f0aff1728727c901b (diff)
Replaced code usage of libuv with asio library (nw)
Diffstat (limited to 'makefile')
-rw-r--r--makefile12
1 files changed, 1 insertions, 11 deletions
diff --git a/makefile b/makefile
index 5ef135eecf0..3dcc1e2aa8d 100644
--- a/makefile
+++ b/makefile
@@ -61,7 +61,6 @@
# USE_SYSTEM_LIB_LUA = 1
# USE_SYSTEM_LIB_PORTMIDI = 1
# USE_SYSTEM_LIB_PORTAUDIO = 1
-# USE_SYSTEM_LIB_UV = 1
# USE_BUNDLED_LIB_SDL2 = 1
# MESA_INSTALL_ROOT = /opt/mesa
@@ -96,7 +95,6 @@
# FORCE_VERSION_COMPILE = 1
# MSBUILD = 1
-# USE_LIBUV = 1
# IGNORE_BAD_LOCALISATION=1
# PRECOMPILE = 0
@@ -437,10 +435,6 @@ ifdef USE_BUNDLED_LIB_SDL2
PARAMS += --with-bundled-sdl2
endif
-ifdef USE_SYSTEM_LIB_UV
-PARAMS += --with-system-uv='$(USE_SYSTEM_LIB_UV)'
-endif
-
#-------------------------------------------------
# distribution may change things
#-------------------------------------------------
@@ -737,10 +731,6 @@ ifdef PLATFORM
TARGET_PARAMS += --PLATFORM='$(PLATFORM)'
endif
-ifdef USE_LIBUV
-PARAMS += --USE_LIBUV='$(USE_LIBUV)'
-endif
-
ifdef PRECOMPILE
PARAMS += --precompile='$(PRECOMPILE)'
endif
@@ -1025,7 +1015,7 @@ endif
.PHONY: vs2015_uwp
vs2015_uwp: generate
- $(SILENT) $(GENIE) $(PARAMS) $(TARGET_PARAMS) --vs=winstore82 --osd=windows --NO_USE_MIDI=1 --USE_LIBUV=0 --NO_OPENGL=1 --USE_QTDEBUG=0 --MODERN_WIN_API=1 vs2015
+ $(SILENT) $(GENIE) $(PARAMS) $(TARGET_PARAMS) --vs=winstore82 --osd=windows --NO_USE_MIDI=1 --NO_OPENGL=1 --USE_QTDEBUG=0 --MODERN_WIN_API=1 vs2015
ifdef MSBUILD
$(SILENT) msbuild.exe $(PROJECTDIR_WIN)/vs2015-winstore82/$(PROJECT_NAME).sln $(MSBUILD_PARAMS)
endif