The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
229 B
11 lines
229 B
10 years ago
|
#define BOOST_TEST_DYN_LINK
|
||
|
#define BOOST_TEST_MODULE "MesonTest"
|
||
|
#define BOOST_TEST_MAIN
|
||
|
#include <boost/test/unit_test.hpp>
|
||
|
|
||
|
BOOST_AUTO_TEST_CASE(m_test) {
|
||
|
int x = 2+2;
|
||
|
BOOST_CHECK(true);
|
||
|
BOOST_CHECK_EQUAL(x, 4);
|
||
|
}
|