From fc693f93a629cda88c83992f886931531356169e Mon Sep 17 00:00:00 2001 From: fpetrini15 Date: Fri, 6 Sep 2024 17:34:22 -0700 Subject: [PATCH] Cherry-pick Windows build fixes --- src/CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2e0380470a..9488fc6233 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -782,8 +782,11 @@ if (NOT WIN32) endif() # TRITON_ENABLE_GPU endif() # NOT WIN32 -# tritonfrontend python package -add_subdirectory(python) +# DLIS-7292: Extend tritonfrontend to build for Windows +if (NOT WIN32) + # tritonfrontend python package + add_subdirectory(python) +endif (NOT WIN32) # Currently unit tests do not build for windows... if ( NOT WIN32)