28 lines
637 B
Plaintext
28 lines
637 B
Plaintext
--- CMakeLists.txt.orig 2025-11-28 09:04:30 UTC
|
|
+++ CMakeLists.txt
|
|
@@ -61,7 +61,7 @@ endif()
|
|
endif()
|
|
|
|
# Configure the library source
|
|
-add_subdirectory(src)
|
|
+#add_subdirectory(src)
|
|
|
|
# Configure the headers
|
|
add_subdirectory(include)
|
|
@@ -71,13 +71,13 @@ if(LIBPOLY_BUILD_PYTHON_API)
|
|
# Configure the Python bindings
|
|
add_subdirectory(python)
|
|
# Configure the Python tests
|
|
- add_subdirectory(test/python)
|
|
+ #add_subdirectory(test/python)
|
|
endif()
|
|
|
|
if (BUILD_TESTING)
|
|
# Configure the C++ tests
|
|
enable_testing()
|
|
add_subdirectory(test/poly)
|
|
- add_subdirectory(test/polyxx)
|
|
+ #add_subdirectory(test/polyxx)
|
|
endif()
|
|
|