CMakeLists.txt

for easy building
This commit is contained in:
Sagar Ramsaransing 2019-06-29 18:43:56 +00:00
parent 20c5e25619
commit 79af252d8a

16
CMakeLists.txt Normal file
View File

@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.14)
project(park)
set(CMAKE_CXX_STANDARD 11)
add_executable(park
main.cpp
Customer.cpp
headers/Customer.h
Park_spot.cpp
headers/Park_spot.h
Park_time.cpp
headers/Park_time.h
)