From 369fb2524c373440c4a943886debeaa99a0daa5c Mon Sep 17 00:00:00 2001 From: Landon & Emma <80786423+LandonAndEmma@users.noreply.github.com> Date: Sun, 7 Apr 2024 17:42:08 -0400 Subject: [PATCH] Create CMakeLists.txt --- CMakeLists.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..60664d6 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.13) # CMake version check +project(arm9_music_editor) # Create project "arm9_music_editor" +set(CMAKE_CXX_STANDARD 14) # Enable c++14 standard + +# Add main.cpp file of the project root directory as a source file +set(SOURCE_FILES main.cpp) + +# Add executable target with source files listed in SOURCE_FILES variable +add_executable(arm9_music_editor ${SOURCE_FILES})