Rename instructions.c to instruction_metrics.c

This commit is contained in:
Paweł Bylica 2018-06-11 18:14:36 +02:00
parent 2c83269f62
commit 8a9ebd4966
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
2 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,12 @@
# Copyright 2018 Pawel Bylica. # Copyright 2018 Pawel Bylica.
# Licensed under the MIT License. See the LICENSE file. # Licensed under the MIT License. See the LICENSE file.
add_library(instructions ${include_dir}/evmc/instructions.h instructions.c) add_library(
instructions
${include_dir}/evmc/instructions.h
instruction_metrics.c
)
add_library(evmc::instructions ALIAS instructions) add_library(evmc::instructions ALIAS instructions)
target_include_directories(instructions PUBLIC ${include_dir}) target_include_directories(instructions PUBLIC ${include_dir})