Starting over
This commit is contained in:
@@ -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")
|
||||
@@ -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.
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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.
|
||||
Reference in New Issue
Block a user