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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2018-10-25 16:13:46 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-10-25 16:13:46 +0300
commit7ec5a9af873aa178d098450861a9b45e49037257 (patch)
tree590a550334873f3d829f5db11cbcd615bc8dea0c /runtime
parentcb467ff359737f5468f7c6104749e34c69f0dc9f (diff)
[build] Fixes wasm tools to run on desktop .net as well (#11351)
* [build] Fixes wasm tools to run on desktop .net as well Fixes #11326 * [csproj] Update project files
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index f81403165b8..7cb4a404ab0 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -77,10 +77,10 @@ build_profiles += unreal
endif
if INSTALL_WASM
-build_profiles += wasm
+build_profiles += wasm wasm_tools
endif
-test_profiles = $(filter-out binary_reference_assemblies monodroid_tools,$(build_profiles))
+test_profiles = $(filter-out binary_reference_assemblies monodroid_tools wasm_tools,$(build_profiles))
MAKE_FLAGS=$(if $(V),,--no-print-directory -s)