|
4 | 4 |
|
5 | 5 | option(ANIPARSE_BUILD_TESTS "build tests, Default=OFF" OFF) |
6 | 6 | option(ANIPARSE_BUILD_EXAMPLES "build examples, Default=OFF" OFF) |
7 | | -option(ANIPARSE_BUILD_TOOLS "build tools, Default=OFF" OFF) |
8 | 7 | option(ANIPARSE_ANALYZE "MSVC /analyze lifetime gate (slow; CI leg)" OFF) |
9 | 8 |
|
10 | 9 | # HTTP backends. The parse core is backend-neutral (talks only to ClientContext); |
@@ -53,7 +52,7 @@ if (ANIPARSE_SHARED) |
53 | 52 | # PIC. Set before the add_subdirectory() calls in the find modules below. |
54 | 53 | set(CMAKE_POSITION_INDEPENDENT_CODE ON) |
55 | 54 | # Windows has no rpath — the loader looks for a DLL next to the .exe. Put the |
56 | | - # library and every in-tree consumer (tests, examples, tools) in one directory, |
| 55 | + # library and every in-tree consumer (tests, examples) in one directory, |
57 | 56 | # so libaniparse.dll AND the third-party DLLs vcpkg's applocal step copies |
58 | 57 | # beside it (libcurl, zlib — needed by the library, not by the exe, so an exe's |
59 | 58 | # own applocal pass never fetches them) are all found without a copy step. |
@@ -241,10 +240,6 @@ if (ANIPARSE_BUILD_EXAMPLES) |
241 | 240 | add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/examples") |
242 | 241 | endif() |
243 | 242 |
|
244 | | -if (ANIPARSE_BUILD_TOOLS) |
245 | | - add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/tools") |
246 | | -endif() |
247 | | - |
248 | 243 | # ---- CONFIGURE PACKAGE |
249 | 244 |
|
250 | 245 | include(CMakePackageConfigHelpers) |
|
0 commit comments