oss: no longer search in the repo for PrjFS libs/headers

Summary:
The headers are included in the Windows devkits, thus we do not need to include
an outdated version in the repository.

Reviewed By: chadaustin

Differential Revision: D34092871

fbshipit-source-id: f8ea381442edf5fa1f143e756d3ccac986035fc8
This commit is contained in:
Xavier Deguillard 2022-02-08 18:09:31 -08:00 committed by Facebook GitHub Bot
parent 3ebcc585f7
commit 77c91973d7

View File

@ -12,8 +12,8 @@
include(FindPackageHandleStandardArgs)
find_path(PRJFS_INCLUDE_DIR NAMES ProjectedFSLib.h PATHS "facebook/third-party/prjfs" "D:/edenwin64/prjfs")
find_library(PRJFS_LIBRARY NAMES ProjectedFSLib.lib PATHS "facebook/third-party/prjfs" "D:/edenwin64/prjfs")
find_path(PRJFS_INCLUDE_DIR NAMES ProjectedFSLib.h)
find_library(PRJFS_LIBRARY NAMES ProjectedFSLib.lib)
find_package_handle_standard_args(
Prjfs
PRJFS_INCLUDE_DIR