We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e83507 commit 10d5cb3Copy full SHA for 10d5cb3
1 file changed
CMakeLists.txt
@@ -265,9 +265,11 @@ target_link_libraries(quant turboquant)
265
add_executable(debug_compare tools/debug_compare.c)
266
target_link_libraries(debug_compare turboquant)
267
268
-# TQM converter tool
269
-add_executable(tq_convert tools/tq_convert.c)
270
-target_link_libraries(tq_convert turboquant)
+# TQM converter tool (not on Windows — uses POSIX dirent/mmap)
+if(NOT MSVC)
+ add_executable(tq_convert tools/tq_convert.c)
271
+ target_link_libraries(tq_convert turboquant)
272
+endif()
273
274
# Examples (always built)
275
file(GLOB EXAMPLE_C_SOURCES examples/*.c)
0 commit comments