mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 06:06:25 +01:00
Glib::thread_init has been deprecated since 2.32,ib is no longer necessary and no longer has any effect. This fixes builds with modern glib[mm] versions, notably with msys2 in Windows.
12 lines
324 B
C++
12 lines
324 B
C++
#include <cppunit/extensions/TestFactoryRegistry.h>
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
#include <glibmm/thread.h>
|
|
|
|
int main()
|
|
{
|
|
CppUnit::TextUi::TestRunner runner;
|
|
CppUnit::TestFactoryRegistry ®istry = CppUnit::TestFactoryRegistry::getRegistry();
|
|
runner.addTest (registry.makeTest());
|
|
runner.run();
|
|
return 0;
|
|
}
|