Skip to content

Commit

Permalink
Create CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
LandonAndEmma authored Apr 7, 2024
1 parent b417b04 commit 369fb25
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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})

0 comments on commit 369fb25

Please sign in to comment.