Skip to content

Instantly share code, notes, and snippets.

@vaalentin
Created February 11, 2016 16:57
Show Gist options
  • Save vaalentin/56be35f086e82430a97a to your computer and use it in GitHub Desktop.
Save vaalentin/56be35f086e82430a97a to your computer and use it in GitHub Desktop.
# Generate with cmake -G "Unix Makefiles" ..
# Set minimum version
cmake_minimum_required(VERSION 3.4 FATAL_ERROR)
# Project name
project("project name")
# Project entry point
# no need to include headers
add_executable(scrapper main.cpp module.cpp)
# Enable c++11 experimental support
set_property(TARGET scrapper PROPERTY CXX_STANDARD 11)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment