boilerplate added with gitignore, cmakelists, and hello world main.cpp
This commit is contained in:
11
CMakeLists.txt
Normal file
11
CMakeLists.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(SpotifyDownloader LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||
|
||||
add_executable(spotify-downloader
|
||||
src/main.cpp
|
||||
)
|
||||
Reference in New Issue
Block a user