https://github.com/Kitware/CMake
Raw File
Tip revision: d88682dff6bf053e5bbdc10accf5d6825303e656 authored by Brad King on 02 August 2024, 13:57:10 UTC
CMake 3.30.2
Tip revision: d88682d
foo.asm
%ifndef DEF_FOO
%error "DEF_FOO incorrectly not defined"
%endif
section .text
%ifdef TEST2x64
global foo
%else
global _foo
%endif
;TASM compatibility mode allows 'include' instead of '%include'
include "foo-proc.asm"
back to top