mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
ToDo: - Add compiling QElectroTech on Cmake (help needed) - more Tests? - Qt Test - Boost Test to test run qtcreator File > open => CMakeLists.txt
10 lines
202 B
C++
10 lines
202 B
C++
#define CATCH_CONFIG_RUNNER
|
|
#include <QtGui/QGuiApplication>
|
|
#include <catch2/catch.hpp>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
return Catch::Session().run(argc, argv);
|
|
}
|