evmc/test/integration/compilation/compilation_test.cxx

22 lines
564 B
C++
Raw Normal View History

2018-08-27 22:13:33 +02:00
/* EVMC: Ethereum Client-VM Connector API.
* Copyright 2018-2019 The EVMC Authors.
2019-01-18 13:49:54 +01:00
* Licensed under the Apache License, Version 2.0.
2018-08-27 22:13:33 +02:00
*/
2019-01-18 13:49:54 +01:00
// Test compilation of C and C++ public headers.
2018-08-27 22:13:33 +02:00
#include <evmc/evmc.h>
2019-03-19 19:23:06 +00:00
#include <evmc/evmc.hpp>
#include <evmc/helpers.h>
2019-01-18 13:49:54 +01:00
#include <evmc/instructions.h>
#include <evmc/loader.h>
2018-08-27 22:13:33 +02:00
#include <evmc/utils.h>
// Include again to check if headers have proper include guards.
#include <evmc/evmc.h>
#include <evmc/evmc.hpp>
#include <evmc/helpers.h>
#include <evmc/instructions.h>
#include <evmc/loader.h>
#include <evmc/utils.h>