Follow this guide if you're interested in building the library to contribute (check CONTRIBUTING.md! and Coding Style) or you're simply curious to run the test suite.
The test suite and example projects uses the handmade / self-hosted SC::Build system, that describes builds in C++
SC.bat build configure
SC.sh build configure
_Build/_Projects
).SC.sh build
.Under VSCode select Tasks: Run Task
and choose:
Generate Projects
Intel Machines
SC.bat build compile Debug default intel64
SC.sh build compile Debug default intel64
Arm Machines
SC.bat build compile Debug default arm64
SC.sh build compile Debug default arm64
_Build/_Projects/VisualStudio2022/SCTest.sln
_Build/_Projects/XCode/SCTest.xcodeproj/project.xcworkspace
cd _Build/_Projects/Makefile/linux
cd _Build/_Projects/Makefile/apple
make -j SCTest
make -j SCTest CONFIG=Release
Under VSCode select Tasks: Run Task
and choose an appropriate targets like:
Build SCTest Debug intel64
[1]Build SCTest Debug arm64
[1]Build SCTest Release intel64
[1]Build SCTest Release arm64
[1]make
and c++
command (can be switched to be clang
or gcc
). Builds only current host architecture (arm64
or x86_64
). Still needs XCode installed for the sysroot. Under VSCode select Tasks: Run Task
and choose an appropriate targets like:
Build SCTest Debug intel64
[1]Build SCTest Debug arm64
[1]Build SCTest Release intel64
[1]Build SCTest Release arm64
[1]make
and c++
commands. Builds only current host architecture (arm64
or x86_64
).Under VSCode select Tasks: Run Task
and choose an appropriate targets like:
Build SCTest Debug intel64
[1]Build SCTest Debug arm64
[1]Build SCTest Release intel64
[1]Build SCTest Release arm64
[1]Visual Studio 2022
installedExecutables will be at _Build/_Outputs/${platform}-${arch}-${build}-${compiler}-${config}/${EXAMPLE_NAME}
.
For example assuming host to be ARM64 Linux, compiling with Clang in Debug will cause the folder to be _Build/_Outputs/linux-arm64-make-clang-Debug/SCTest
.
Running the default target should work out of the box, as paths are already generated accordingly.
Select one of the appropriate Run and Debug
configuration like:
SCTest intel64 [apple] (gdb)
[1]SCTest intel64 [apple] (lldb)
[2]SCTest arm64 [apple] (gdb)
[1]SCTest arm64 [apple] (lldb)
[2]SCTest intel64 [linux] (gdb)
[1]SCTest intel64 [linux] (lldb)
[2]SCTest arm64 [linux] (gdb)
[1]SCTest arm64 [linux] (lldb)
[2]gdb
debugger. Implicitly invokes Build SCTest Debug
to build the executable. lldb
debugger. Implicitly invokes Build SCTest Debug
to build the executable. You need CodeLLDB
or similar extension installed in VSCode.Select one of the appropriate Run and Debug
configuration like:
SCTest intel64 [windows]
[1]SCTest arm64 [windows]
[1]Visual Studio 2022
installedThe SC-build.cpp
from SC::Tool downloads Doxygen and some customization themes and then builds the documentation in _Build/_Documentation
.
SC.bat build documentation
SC.sh build documentation
Under VSCode select Tasks: Run Task
and choose:
Build Documentation