From 96f5572aee9b11ce8315bab8813cfeb2ee9bd86f Mon Sep 17 00:00:00 2001 From: Nazarov Konstantin Date: Fri, 11 Nov 2022 19:30:44 +0300 Subject: [PATCH] move cmake functionality for disassembler plugins from code part to plugin part --- tests/disassembler/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/disassembler/CMakeLists.txt b/tests/disassembler/CMakeLists.txt index 8b584cd1b..b2ae0ddfc 100644 --- a/tests/disassembler/CMakeLists.txt +++ b/tests/disassembler/CMakeLists.txt @@ -11,8 +11,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -if (NOT PANDA_TARGET_ARM32) - # disasm_bin directory set(DISASM_BIN_DIR ${CMAKE_CURRENT_BINARY_DIR}) @@ -40,5 +38,3 @@ set(DISASM_LIT_SRC ${DISASM_ECMA_TESTS_DIR}/lit.js) compile_file_ecma(FILE ${DISASM_LIT_SRC} OUTPUT_FILE ${DISASM_LIT_BINARY} WORKING_DIR ${DISASM_BIN_DIR}) add_custom_target(disasm_tests_binaries DEPENDS ${DISASM_LIT_BINARY}) add_dependencies(disasm_tests_ecma disasm_tests_binaries) - -endif() -- Gitee