Skip to content

Instantly share code, notes, and snippets.

View yazilimperver's full-sized avatar

Yazılımperver yazilimperver

View GitHub Profile

Effective Modern CMake

Getting Started

For a brief user-level introduction to CMake, watch C++ Weekly, Episode 78, Intro to CMake by Jason Turner. LLVM’s CMake Primer provides a good high-level introduction to the CMake syntax. Go read it now.

After that, watch Mathieu Ropert’s CppCon 2017 talk Using Modern CMake Patterns to Enforce a Good Modular Design (slides). It provides a thorough explanation of what modern CMake is and why it is so much better than “old school” CMake. The modular design ideas in this talk are based on the book [Large-Scale C++ Software Design](https://www.amazon.de/Large-Scale-Soft

@yazilimperver
yazilimperver / Timestamp.cpp
Last active November 9, 2020 20:33
Haftalik C++ 33 - Modern Timstamp
// Orjinal yazı için: https://www.yazilimperver.com/index.php/2020/11/09/haftalik-c-33-zaman-bilgisi-etiketi/
// For original post: https://www.yazilimperver.com/index.php/2020/11/09/haftalik-c-33-zaman-bilgisi-etiketi/
#include "Timestamp.h"
// Asagida ihtiyac duyuacaginiz baslik dosyalarini görebilirsiniz
#include <chrono>
#include <ctime>
#include <iomanip>
#include <sstream>
#include <string>