https://github.com/Kitware/CMake
Raw File
Tip revision: 844417294bd6a1f4bcd3ff49e92659bbd437752d authored by Brad King on 13 September 2024, 13:25:31 UTC
Merge topic 'file-REAL_PATH-warn-non-existing'
Tip revision: 8444172
foo.asm
ifndef DEF_FOO
.err <DEF_FOO incorrectly not defined>
endif
ifndef DEF_BAR
.err <DEF_BAR incorrectly not defined>
endif
ifndef TESTx64
.386
.model flat, c
endif
.code
include <foo-proc.asm>
end
back to top