From 79036cbeff08daa0a4beaa39850c108673ffacbc Mon Sep 17 00:00:00 2001 From: Justin Marshall Date: Thu, 25 Jun 2020 08:35:33 -0700 Subject: [PATCH] Removed assembly language requirement from cmake project. --- code/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/CMakeLists.txt b/code/CMakeLists.txt index 4e8490a..46a81fc 100644 --- a/code/CMakeLists.txt +++ b/code/CMakeLists.txt @@ -1,7 +1,7 @@ # CMakeList.txt : CMake project for Red Alert cmake_minimum_required (VERSION 3.8) -project(RedAlert ASM CXX C) +project(RedAlert CXX C) enable_language(ASM) set(CMAKE_CXX_FLAGS "") set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../)