Description
Motivation
Instructions
# 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 |
import os | |
import ycm_core | |
flags = [ | |
'-Wall', | |
'-std=c++11', | |
# ...and the same thing goes for the magic -x option which specifies the | |
# language that the files to be compiled are written in. This is mostly |
{ | |
"scripts": { | |
"start": "webpack-dev-server --config webpack.dev.config.js", | |
"clean": "rm -rf ./dist", | |
"build": "webpack --config webpack.prod.config.js --progress" | |
} | |
} |