1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:57:45 +00:00

Meta: Use Lagom:: namespaced names for code generators

This will be required when we switch to a SuperBuild that has Lagom as
a configure time dependency, but is a distinct enough change to be
separate.
This commit is contained in:
Andrew Kaster 2021-09-07 00:54:27 -06:00 committed by Ali Mohammad Pur
parent fc8d1bf3ce
commit a269a32a17
3 changed files with 16 additions and 16 deletions

View file

@ -103,10 +103,10 @@ add_custom_target(install-ports
)
add_custom_target(configure-components
COMMAND "$<TARGET_FILE:ConfigureComponents>"
COMMAND "$<TARGET_FILE:Lagom::ConfigureComponents>"
USES_TERMINAL
)
add_dependencies(configure-components ConfigureComponents)
add_dependencies(configure-components Lagom::ConfigureComponents)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)