Skip to content

Commit 756c773

Browse files
benhillisBen Hillis
andauthored
Fix FindIDL.cmake to correctly reference IDL_P variable instead of empty IDL_C var (#14298)
Co-authored-by: Ben Hillis <benhill@ntdev.microsoft.com>
1 parent e01a672 commit 756c773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/FindIDL.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function(add_idl target idl_files_with_proxy idl_files_no_proxy)
2424
set(IDL_I ${OUTPUT_DIR}/${IDL_NAME}_i_${TARGET_PLATFORM}.c)
2525
set(IDL_P ${OUTPUT_DIR}/${IDL_NAME}_p_${TARGET_PLATFORM}.c)
2626
set(IDL_DLLDATA ${OUTPUT_DIR}/dlldata_${TARGET_PLATFORM}.c)
27-
set(MIDL_OUTPUT ${IDL_HEADER} ${IDL_I} ${IDL_C} ${IDL_DLLDATA})
27+
set(MIDL_OUTPUT ${IDL_HEADER} ${IDL_I} ${IDL_P} ${IDL_DLLDATA})
2828

2929
add_custom_command(
3030
OUTPUT ${MIDL_OUTPUT} ${CMAKE_CURRENT_BINARY_DIR}/CmakeFiles/${target}

0 commit comments

Comments
 (0)