Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix configuration error when GULRAK_SOURCE_DIR is specified on Windows #2551

Merged
merged 1 commit into from
Aug 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmake/gulrak.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ set(FETCHCONTENT_QUIET OFF)
# GULRAK_SOURCE_DIR : Set this to the directory where you have cloned gulrak filesystem repo,
# if you would like to bypass pulling from Github repository via Internet.
if(DEFINED GULRAK_SOURCE_DIR)
file(TO_CMAKE_PATH "${GULRAK_SOURCE_DIR}" GULRAK_SOURCE_DIR)
message(STATUS "**** Building Gulrak From " ${GULRAK_SOURCE_DIR})
FetchContent_Declare(
${CONTENT_NAME}
Expand Down