mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
16 lines
283 B
C++
16 lines
283 B
C++
#define CATCH_CONFIG_RUNNER
|
|
#include "catch.hpp"
|
|
#include "gx/font/FreeType.hpp"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
// Global initialization
|
|
FreeTypeInitialize();
|
|
|
|
int result = Catch::Session().run( argc, argv );
|
|
|
|
// Global cleanup
|
|
// TODO
|
|
|
|
return result;
|
|
}
|