Last active
August 29, 2015 14:11
-
-
Save madduci/1fd49017d56fd52b2412 to your computer and use it in GitHub Desktop.
Modern C++ - Hello World CMake
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project(FirstProject) | |
cmake_minimum_required(VERSION 2.8) | |
aux_source_directory(. SRC_LIST) | |
add_executable(${PROJECT_NAME} ${SRC_LIST}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment