mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
12 lines
300 B
C++
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 );
|
|
}
|