8000 fixed typo, removed example build · allisdeepak/arangodb@6782a5e · GitHub
[go: up one dir, main page]

Skip to content

Commit 6782a5e

Browse files
committed
fixed typo, removed example build
1 parent 60cd363 commit 6782a5e

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

3rdParty/boost/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ endif ()
2525

2626
if (Boost_UNIT_TEST_FRAMEWORK_FOUND)
2727
try_compile(
28-
HAVE_USABLE_BOOT_LIBRARIES
28+
HAVE_USABLE_BOOST_LIBRARIES
2929
"${CMAKE_BINARY_DIR}/temp"
3030
"${CMAKE_SOURCE_DIR}/cmake/test_boost.cpp"
3131
LINK_LIBRARIES
@@ -34,7 +34,7 @@ if (Boost_UNIT_TEST_FRAMEWORK_FOUND)
3434
"-DINCLUDE_DIRECTORIES=${Boost_INCLUDE_DIR}"
3535
)
3636

37-
if (HAVE_USABLE_BOOT_LIBRARIES)
37+
if (HAVE_USABLE_BOOST_LIBRARIES)
3838
option(USE_BOOST_UNITTESTS "use boost unit-tests" ON)
3939
else ()
4040
message(STATUS "cannot use BOOST library ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}")

3rdParty/zlib/zlib-1.2.8/CMakeLists.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -241,23 +241,23 @@ endif()
241241

242242
include_directories(${PROJECT_SOURCE_DIR} ${PROJECT_BINARY_DIR})
243243

244-
add_executable(example EXCLUDE_FROM_ALL test/example.c)
245-
target_link_libraries(example zlib)
246-
add_test(example example)
247-
248-
add_executable(minigzip EXCLUDE_FROM_ALL test/minigzip.c)
249-
target_link_libraries(minigzip zlib)
250-
251-
if(HAVE_OFF64_T)
252-
add_executable(example64 test/example.c)
253-
target_link_libraries(example64 zlib)
254-
set_target_properties(example64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64")
255-
add_test(example64 example64)
256-
257-
add_executable(minigzip64 test/minigzip.c)
258-
target_link_libraries(minigzip64 zlib)
259-
set_target_properties(minigzip64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64")
260-
endif()
244+
# add_executable(example EXCLUDE_FROM_ALL test/example.c)
245+
# target_link_libraries(example zlib)
246+
# add_test(example example)
247+
248+
# add_executable(minigzip EXCLUDE_FROM_ALL test/minigzip.c)
249+
# target_link_libraries(minigzip zlib)
250+
251+
# if(HAVE_OFF64_T)
252+
# add_executable(example64 test/example.c)
253+
# target_link_libraries(example64 zlib)
254+
# set_target_properties(example64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64")
255+
# add_test(example64 example64)
256+
257+
# add_executable(minigzip64 test/minigzip.c)
258+
# target_link_libraries(minigzip64 zlib)
259+
# set_target_properties(minigzip64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64")
260+
# endif()
261261

262262
set(ZLIB_VERSION
263263
${zlib_VERSION}

0 commit comments

Comments
 (0)
0