mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
17 lines
656 B
C++
17 lines
656 B
C++
#include "bench_cpp_function.hpp"
|
|
#include "bench_lua_function.hpp"
|
|
#include "bench_get.hpp"
|
|
#include "bench_set.hpp"
|
|
#include "bench_usertype.hpp"
|
|
#include "nonius/nonius.h++"
|
|
|
|
int main( int argc, char* argv[] ) {
|
|
using namespace std::literals::string_literals;
|
|
std::string configurationname = argv[ 1 ];
|
|
std::string platformname = argv[ 2 ];
|
|
bench_lua_function( "bench/", configurationname, platformname );
|
|
bench_cpp_function( "bench/", configurationname, platformname );
|
|
bench_get( "bench/", configurationname, platformname );
|
|
bench_set( "bench/", configurationname, platformname );
|
|
bench_usertype( "bench/", configurationname, platformname );
|
|
} |