From 48c1dff0466f5231619356ae33ef1a181888a1ff Mon Sep 17 00:00:00 2001 From: Denis Feklushkin Date: Tue, 30 Jul 2024 23:05:44 +0700 Subject: [PATCH] druntime CMake: ASM language added to project (#4715) Sometimes CMake silently(!) ignores .S (asm) files if ASM isn't mentioned in the project directive. https://stackoverflow.com/questions/23452089/why-is-cmake-ignoring-assembly-files-when-building-static-library/67902603#67902603 --- runtime/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index b392acb8bb..ca9e50f251 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -1,4 +1,4 @@ -project(runtime C) +project(runtime C ASM) cmake_minimum_required(VERSION 3.4.3)