blob: 2080180203fd05e03c08843a263421c5630bebe2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
--- 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()
|