cmake: modules: generated_file_directories: fix paths

The paths that got assigned to these variable don't quite match
the description, likely a typo, fix that.

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
This commit is contained in:
Yong Cong Sin 2024-01-30 14:27:25 +08:00 committed by Carles Cufí
parent 8bb40bbb8e
commit c9818d5eea
1 changed files with 2 additions and 2 deletions

View File

@ -19,6 +19,6 @@ include_guard(GLOBAL)
# Optional environment variables:
# None
set(BINARY_DIR_INCLUDE ${PROJECT_BINARY_DIR}/include/generated)
set(BINARY_DIR_INCLUDE_GENERATED ${PROJECT_BINARY_DIR}/include/generated)
set(BINARY_DIR_INCLUDE ${PROJECT_BINARY_DIR}/include)
set(BINARY_DIR_INCLUDE_GENERATED ${BINARY_DIR_INCLUDE}/generated)
file(MAKE_DIRECTORY ${BINARY_DIR_INCLUDE_GENERATED})