[ASMPP] Implement asm preprocessor

This converts ML style assembly to GAS compatible syntax
This commit is contained in:
Timo Kreuzer 2022-06-20 18:29:01 +03:00
parent 7277e26944
commit 61cc62d1b2
10 changed files with 1700 additions and 18 deletions

View file

@ -0,0 +1,8 @@
list(APPEND SOURCE
asmpp.cpp
)
add_host_tool(asmpp ${SOURCE})
target_link_libraries(asmpp PRIVATE host_includes)
set_property(TARGET asmpp PROPERTY CXX_STANDARD 11)