diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-03-21 11:32:43 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-03-21 11:32:43 +0100 |
commit | eb0d2f124872aa279ed605c5231997f71f0b6139 (patch) | |
tree | 201063be20559c0312dfd4118c07aa8da78577c2 /CMakeLists.txt | |
parent | 753dea91bcfecb82fb5db646e72c9a022d2d2cbf (diff) |
main: turn ucode into multicall executable
Turn the ucode executable into a multicall binary and select default flags
based on the name it was invoked with. Introduce two new symlinks "ucc" and
"utpl" which start ucode in compile and template mode respectively.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c0ed3d4..1f81cdb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -216,6 +216,10 @@ INSTALL(TARGETS ucode RUNTIME DESTINATION bin) INSTALL(TARGETS libucode LIBRARY DESTINATION lib) INSTALL(TARGETS ${LIBRARIES} LIBRARY DESTINATION lib/ucode) +ADD_CUSTOM_TARGET(ucc ALL COMMAND ${CMAKE_COMMAND} -E create_symlink ucode ucc) +ADD_CUSTOM_TARGET(utpl ALL COMMAND ${CMAKE_COMMAND} -E create_symlink ucode utpl) +INSTALL(FILES ucc;utpl DESTINATION bin) + FILE(GLOB UCODE_HEADERS "include/ucode/*.h") INSTALL(FILES ${UCODE_HEADERS} DESTINATION include/ucode) |