1# Copyright (c) 2021-2022 Huawei Device Co., Ltd.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14project(isa)
15
16set(ISA_FILE "${CMAKE_BINARY_DIR}/isa/isa.yaml")
17set(ISA_ASSERTS "${PROJECT_SOURCE_DIR}/asserts.rb")
18set(ISAPI "${PROJECT_SOURCE_DIR}/isapi.rb")
19
20add_custom_target(isa_combine)
21set_target_properties(isa_combine PROPERTIES ISA_PLUGIN_FILES "")
22
23function(add_isa_plugin YAML_FILE_PATH)
24    get_target_property(YAML_FILES isa_combine ISA_PLUGIN_FILES)
25    list(APPEND YAML_FILES ${YAML_FILE_PATH})
26    set_target_properties(isa_combine PROPERTIES ISA_PLUGIN_FILES "${YAML_FILES}")
27endfunction()
28
29# Check ISA_FILE content
30
31set(ASSERT_MARKER "${PROJECT_BINARY_DIR}/assert.ok")
32set(ISA_GEN_RB "${PROJECT_SOURCE_DIR}/gen.rb")
33add_custom_command(OUTPUT ${ASSERT_MARKER}
34    COMMENT "Check ISA content"
35    COMMAND ${ISA_GEN_RB} -d ${ISA_FILE} -r ${ISAPI} -a ${ISA_ASSERTS}
36    COMMAND ${CMAKE_COMMAND} -E touch ${ASSERT_MARKER}
37    DEPENDS ${ISA_FILE} ${ISA_GEN_RB} ${ISA_ASSERTS} ${ISAPI}
38)
39add_custom_target(isa_assert DEPENDS ${ASSERT_MARKER})
40add_dependencies(isa_assert isa_combine)
41
42# Template generation
43set(TEMPLATES
44    isa.md.erb
45)
46panda_isa_gen(TEMPLATES ${TEMPLATES})
47