Skip to content

Instantly share code, notes, and snippets.

@daniel-packard
Last active December 23, 2020 15:21
Hello CMake!
cmake_minimum_required(VERSION 3.15)
project(HelloCMake)
add_executable(hello main.cpp)
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
cout << "Hello, CMake!\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment