Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2021-12-21 14:22:11 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-12-21 14:22:43 +0300
commit5768486ac0d07947bc1ad9a42c189d4a01423168 (patch)
tree8b501ced9edc940c743fed22634ff8d18502ab47 /common/src-from-vcxproj.mk
parent8c45ed33fd3d5aec1fad26e645f7bad230dff42b (diff)
Add support for compiling assembly files.
Diffstat (limited to 'common/src-from-vcxproj.mk')
-rw-r--r--common/src-from-vcxproj.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/src-from-vcxproj.mk b/common/src-from-vcxproj.mk
index 8e3d04e8..3a16b197 100644
--- a/common/src-from-vcxproj.mk
+++ b/common/src-from-vcxproj.mk
@@ -4,6 +4,7 @@
SRC := $(SRC)
SRC2 := $(SRC2)
SRC3 := $(SRC3)
+SRC4 := $(SRC4)
# Paths here are relative to the directory in which make was invoked, not to
# this file, so ../win32/$(PROJECT).vcxproj refers to the Visual Studio project
@@ -11,8 +12,10 @@ SRC3 := $(SRC3)
BASE := $(shell egrep 'ClCompile.*cpp"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
BASE2 := $(shell egrep 'ClCompile.*c"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
+BASE4 := $(shell egrep 'None.*S"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
# The tool-specific makefile may request that certain files be omitted.
SRC += $(filter-out $(FILTER),$(BASE))
SRC2 += $(filter-out $(FILTER),$(BASE2))
SRC3 += $(filter-out $(FILTER),$(BASE3))
+SRC4 += $(filter-out $(FILTER),$(BASE4))