2019-05-22 08:15:28 +00:00
|
|
|
add_subdirectory(ossfuzz)
|
2019-01-17 10:19:54 +00:00
|
|
|
|
2018-02-06 09:57:16 +00:00
|
|
|
add_subdirectory(yulInterpreter)
|
2018-02-07 20:56:14 +00:00
|
|
|
add_executable(yulrun yulrun.cpp)
|
2019-06-06 15:18:48 +00:00
|
|
|
target_link_libraries(yulrun PRIVATE yulInterpreter libsolc evmasm Boost::boost Boost::program_options)
|
2018-02-06 09:57:16 +00:00
|
|
|
|
2019-01-17 10:19:54 +00:00
|
|
|
add_executable(solfuzzer afl_fuzzer.cpp fuzzer_common.cpp)
|
2019-06-06 15:18:48 +00:00
|
|
|
target_link_libraries(solfuzzer PRIVATE libsolc evmasm Boost::boost Boost::program_options Boost::system)
|
2018-03-14 18:15:48 +00:00
|
|
|
|
2018-10-16 19:40:10 +00:00
|
|
|
add_executable(yulopti yulopti.cpp)
|
2019-06-06 15:18:48 +00:00
|
|
|
target_link_libraries(yulopti PRIVATE solidity Boost::boost Boost::program_options Boost::system)
|
2018-10-16 19:40:10 +00:00
|
|
|
|
2018-12-05 11:02:49 +00:00
|
|
|
add_executable(isoltest
|
|
|
|
isoltest.cpp
|
2019-02-19 16:34:59 +00:00
|
|
|
IsolTestOptions.cpp
|
2018-12-05 11:02:49 +00:00
|
|
|
../Common.cpp
|
2020-02-04 18:40:32 +00:00
|
|
|
../CommonSyntaxTest.cpp
|
2019-06-26 16:42:24 +00:00
|
|
|
../EVMHost.cpp
|
2018-12-05 11:02:49 +00:00
|
|
|
../TestCase.cpp
|
2020-03-06 00:22:51 +00:00
|
|
|
../TestCaseReader.cpp
|
2020-01-08 09:42:19 +00:00
|
|
|
../libsolidity/util/BytesUtils.cpp
|
|
|
|
../libsolidity/util/ContractABIUtils.cpp
|
2019-02-06 11:10:05 +00:00
|
|
|
../libsolidity/util/TestFileParser.cpp
|
2019-02-21 00:50:41 +00:00
|
|
|
../libsolidity/util/TestFunctionCall.cpp
|
2019-05-06 16:55:10 +00:00
|
|
|
../libsolidity/GasTest.cpp
|
2018-12-05 11:02:49 +00:00
|
|
|
../libsolidity/SyntaxTest.cpp
|
2019-02-21 00:50:41 +00:00
|
|
|
../libsolidity/SemanticTest.cpp
|
2018-12-05 11:02:49 +00:00
|
|
|
../libsolidity/AnalysisFramework.cpp
|
|
|
|
../libsolidity/SolidityExecutionFramework.cpp
|
|
|
|
../ExecutionFramework.cpp
|
2019-07-02 15:30:54 +00:00
|
|
|
../libsolidity/ABIJsonTest.cpp
|
2018-12-05 11:02:49 +00:00
|
|
|
../libsolidity/ASTJSONTest.cpp
|
2019-12-03 15:50:28 +00:00
|
|
|
../libsolidity/SMTCheckerTest.cpp
|
2019-08-14 16:07:15 +00:00
|
|
|
../libyul/Common.cpp
|
2019-12-12 12:52:27 +00:00
|
|
|
../libyul/EwasmTranslationTest.cpp
|
2019-08-14 16:07:15 +00:00
|
|
|
../libyul/FunctionSideEffects.cpp
|
2018-12-05 11:02:49 +00:00
|
|
|
../libyul/ObjectCompilerTest.cpp
|
2020-02-04 18:40:32 +00:00
|
|
|
../libyul/SyntaxTest.cpp
|
2018-12-05 11:02:49 +00:00
|
|
|
../libyul/YulOptimizerTest.cpp
|
2018-02-08 17:20:54 +00:00
|
|
|
../libyul/YulInterpreterTest.cpp
|
2018-12-05 11:02:49 +00:00
|
|
|
)
|
2019-07-08 14:04:52 +00:00
|
|
|
target_link_libraries(isoltest PRIVATE evmc libsolc solidity yulInterpreter evmasm Boost::boost Boost::program_options Boost::unit_test_framework)
|