You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tracy/extra/version.cpp

12 lines
300 B
C++

#include <stdint.h>
#include <stdio.h>
#include "../server/TracyFileHeader.hpp"
#include "../public/common/TracyVersion.hpp"
int main()
{
const auto ver = uint32_t( tracy::FileVersion( tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch ) );
fwrite( &ver, 1, 4, stdout );
}