Skip to content

Instantly share code, notes, and snippets.

View joksim's full-sized avatar

Joksim joksim

  • Faculty of Computer Science and Engineering
  • Skopje
View GitHub Profile
@joksim
joksim / compiling_building_c_cpp_notes.md
Created April 25, 2018 11:51 — forked from gubatron/compiling_building_c_cpp_notes.md
Things to remember when compiling and linking C/C++ programs

Things to remember when compiling/linking C/C++ software

by Angel Leon. March 17, 2015.

Include Paths

On the compilation phase, you will usually need to specify the different include paths so that the interfaces (.h, .hpp) which define structs, classes, constans, and functions can be found.

With gcc and llvm include paths are passed with -I/path/to/includes, you can pass as many -I as you need.

In Windows, cl.exe takes include paths with the following syntax: /I"c:\path\to\includes\ you can also pass as many as you need.

@joksim
joksim / SassMeister-input.scss
Created November 23, 2016 13:20 — forked from kenwheeler/SassMeister-input.scss
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
$primaryColor: #eeccff;
body {
$primaryColor: #ccc !global;
background: $primaryColor;