Starting over

This commit is contained in:
kdeng00
2020-11-28 08:32:39 -05:00
commit 1995415b5e
4 changed files with 38 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# CMakeList.txt : Top-level CMake project file, do global configuration
# and include sub-projects here.
#
cmake_minimum_required (VERSION 3.8)
project ("SpotifyDemo")
# Include sub-projects.
add_subdirectory ("SpotifyDemo")
+9
View File
@@ -0,0 +1,9 @@
# CMakeList.txt : CMake project for SpotifyDemo, include source and define
# project specific logic here.
#
cmake_minimum_required (VERSION 3.8)
# Add source to this project's executable.
add_executable (SpotifyDemo "SpotifyDemo.cpp" "SpotifyDemo.h")
# TODO: Add tests and install targets if needed.
+12
View File
@@ -0,0 +1,12 @@
// SpotifyDemo.cpp : Defines the entry point for the application.
//
#include "SpotifyDemo.h"
using namespace std;
int main()
{
cout << "Hello CMake." << endl;
return 0;
}
+8
View File
@@ -0,0 +1,8 @@
// SpotifyDemo.h : Include file for standard system include files,
// or project specific include files.
#pragma once
#include <iostream>
// TODO: Reference additional headers your program requires here.