Skip to content

Instantly share code, notes, and snippets.

@JohnCoconut
JohnCoconut / sourcetrail-install.md
Created November 19, 2019 03:16
SourceTrail install instruction

on Fedora 31

 sudo dnf install boost-devel boost-static

build error

[388/391] Linking CXX executable app/sourcetrail_indexer
@JohnCoconut
JohnCoconut / cmake_cheet_sheet.md
Last active April 1, 2020 09:27
cmake cheat sheet

add compile options

if (MSVC)
    # warning level 4 and all warnings as errors
    add_compile_options(/W4 /WX)
else()
    # lots of warnings and all warnings as errors
    add_compile_options(-Wall -Wextra -pedantic -Werror)
endif()