Skip to content

Commit af01ca4

Browse files
committed
fix: [build]Fix build issue
It miss the generated rfbconfig.h header file. Log: Fix build issue.
1 parent 87e353e commit af01ca4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lib/cooperation/libvnc.cmake

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ if(NOT TARGET libVNC)
1515
# adds a source subdir with specifying a build output dir
1616
add_subdirectory(${libvnc_src_DIR} ${libvnc_build_DIR})
1717
# need to add the build dir to include dirs as well because of generated rfbconfig.h
18-
include_directories(${libvnc_src_DIR}/include)
18+
include_directories(
19+
${libvnc_src_DIR}/include
20+
${libvnc_build_DIR}/include
21+
)
1922

2023
endif()

0 commit comments

Comments
 (0)