Skip to content

Commit e39048d

Browse files
authored
Cherry-pick: Don't Build tritonfrontend for Windows (#7606)
1 parent 8baed54 commit e39048d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/CMakeLists.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -782,8 +782,11 @@ if (NOT WIN32)
782782
endif() # TRITON_ENABLE_GPU
783783
endif() # NOT WIN32
784784

785-
# tritonfrontend python package
786-
add_subdirectory(python)
785+
# DLIS-7292: Extend tritonfrontend to build for Windows
786+
if (NOT WIN32)
787+
# tritonfrontend python package
788+
add_subdirectory(python)
789+
endif (NOT WIN32)
787790

788791
# Currently unit tests do not build for windows...
789792
if ( NOT WIN32)

0 commit comments

Comments
 (0)