Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 375 Bytes

msvc-compilation-guide.md

File metadata and controls

28 lines (20 loc) · 375 Bytes

🔨 Building project with MSVC

1. Prepare build directory

git clone https://github.com/cieslarmichal/faker-cxx.git
cd faker-cxx
git submodule update --init --recursive
mkdir build & cd build

2. Setup CMake

cmake .. -G "Visual Studio 17 2022"

3. Build

cmake --build .

4. Run tests

./faker-cxx-UT.exe