Skip to content

Instantly share code, notes, and snippets.

View MayukhSobo's full-sized avatar
🎯
Focusing

Mayukh Sarkar MayukhSobo

🎯
Focusing
View GitHub Profile
@MayukhSobo
MayukhSobo / CMakeLists.txt
Created December 2, 2014 01:11
This projects shows that how OOPs in C++11 & its extensive form can be used to demonstrate a simple concept of Fibonacii Series
cmake_minimum_required(VERSION 2.8.4)
project(test)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES main.cpp test.h test.cpp)
add_executable(test ${SOURCE_FILES})