This repo just contains a very basic example of C++’s std::filesystem::path
type. It was originally created in order to help me test things out and to help me write a Stack Overflow question and answer.
-
Make sure that you have CMake and a C++ compiler.
-
Change directory to the root of this repository:
cd <path-to-this-repo>
-
Create a directory to store files generated by CMake:
mkdir build cd build
-
Run CMake:
cmake .. cmake --build .
Once that last command finishes, there should be a file named StdFilesystemPathExample
or StdFilesystemPathExample.exe
somewhere inside the build/
directory.
Everything in this repo is dedicated to the public domain using 🅭🄍1.0. See COPYING.txt
for details.