7 lines
110 B
CMake
7 lines
110 B
CMake
cmake_minimum_required (VERSION 2.6)
|
|
project (Demo)
|
|
|
|
include_directories( .. )
|
|
|
|
add_executable(Demo demo.cpp)
|