summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Peter Ferrie <peter.ferrie@gmail.com>2019-02-04 10:05:46 -0800
committer R. Belmont <rb6502@users.noreply.github.com>2019-02-04 13:05:46 -0500
commite769e76ce4fb38d535cf32d27cf35c278ff207e0 (patch)
tree8568a04c0196c576ff8d8a2a3f2bbb8d9b1bc225 /makefile
parente22ffab3fa855e8624d090996b53376d4c6756e0 (diff)
enable sub-second snapshot timers (nw) (#4493)
* enable sub-second snapshot timers (nw) * switch to attotime, accept doubles * support LLVM extension in MSVC make vsllvm using extension from here: https://marketplace.visualstudio.com/items?itemName=LLVMExtensions.llvm-toolchain
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/makefile b/makefile
index 6cbcf82110c..7370284f881 100644
--- a/makefile
+++ b/makefile
@@ -1168,6 +1168,17 @@ ifdef FASTBUILD
endif
#-------------------------------------------------
+# Visual Studio LLVM
+#-------------------------------------------------
+
+.PHONY: vsllvm
+vsllvm: generate
+ $(SILENT) $(GENIE) $(PARAMS) $(TARGET_PARAMS) vsllvm
+ifdef MSBUILD
+ $(SILENT) msbuild.exe $(PROJECTDIR_WIN)/vsllvm/$(PROJECT_NAME).sln $(MSBUILD_PARAMS)
+endif
+
+#-------------------------------------------------
# android-ndk
#-------------------------------------------------