Skip to content

Instantly share code, notes, and snippets.

@mpkuse
Created September 6, 2016 09:10
Show Gist options
  • Save mpkuse/35657f09cdc9737bb02018ffa7a5ea77 to your computer and use it in GitHub Desktop.
Save mpkuse/35657f09cdc9737bb02018ffa7a5ea77 to your computer and use it in GitHub Desktop.
CMake Project Template
cmake_minimum_required (VERSION 2.8)
project (proto_app)
add_executable( helloDemo hello.cpp )
target_link_libraries( helloDemo )
#include <iostream>
using namespace std;
int main( int argc, char ** argv )
{
cout << "Hello World\n";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment