1if(WINDOWS_MSVC_X86_64) 2 android_nasm_compile( 3 TARGET hello_world_asm_lib NODISTRIBUTE SRC # cmake-format: sortable 4 yasm/hello_world.asm) 5 android_add_test( 6 TARGET hello_world_asm_test SRC # cmake-format: sortable 7 yasm/hello_world_unittest.cpp) 8 target_link_libraries(hello_world_asm_test PRIVATE hello_world_asm_lib 9 gmock_main) 10endif() 11 12add_subdirectory(compiler) 13