Skip to content

Commit 2c9b253

Browse files
committed
bugfix
1 parent 70d9371 commit 2c9b253

2 files changed

Lines changed: 1 addition & 15 deletions

File tree

CMakeLists.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ if (NOT DEFINED THREADS_PREFER_PTHREAD_FLAG)
170170
set(THREADS_PREFER_PTHREAD_FLAG ON)
171171
endif()
172172

173-
#QL1.29 MergeConflict theirs
174173
# Add Threads dependency when any of the threading features are enabled
175174
if (QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER OR QL_ENABLE_SESSIONS OR QL_ENABLE_THREAD_SAFE_OBSERVER_PATTERN)
176175
find_package(Threads REQUIRED)
@@ -181,11 +180,6 @@ if (QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER OR QL_ENABLE_SESSIONS OR QL_ENABLE_THREA
181180
else()
182181
set(QL_THREAD_LIBRARIES Threads::Threads)
183182
endif()
184-
set(QL_THREAD_LIBRARIES)
185-
# QL1.29 MergeConflict ours
186-
# Parallel test runner needs library rt on *nix for shm_open, etc.
187-
#if (QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER AND UNIX AND NOT APPLE)
188-
# find_library(RT_LIBRARY rt REQUIRED)
189183
endif()
190184

191185
# If available, use PIC for shared libs and PIE for executables

test-suite/CMakeLists.txt

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -381,10 +381,6 @@ if (QL_BUILD_TEST_SUITE)
381381
target_link_libraries(ql_test_suite PRIVATE
382382
ql_library
383383
ql_unit_test_main
384-
#QL1.29 MergeConflict ours
385-
#Boost::unit_test_framework
386-
#${QL_TEST_SUITE_LIBRARIES})
387-
# QL1.29 MergeConflict theirs
388384
${QL_THREAD_LIBRARIES})
389385
if(MSVC AND CMAKE_UNITY_BUILD)
390386
# for Unity builds, we need to add /bigobj
@@ -408,17 +404,13 @@ IF (QL_BUILD_BENCHMARK)
408404
endif()
409405
target_link_libraries(ql_benchmark PRIVATE
410406
ql_library
411-
#QL1.29 MergeConflict theirs
412407
ql_unit_test_main
413408
${QL_THREAD_LIBRARIES})
414409
if(MSVC AND CMAKE_UNITY_BUILD)
415410
# for Unity builds, we need to add /bigobj
416411
target_compile_options(ql_benchmark PRIVATE "/bigobj")
417412
endif()
418-
#QL1.29 MergeConflict ours
419-
#Boost::unit_test_framework
420-
#{QL_BENCHMARK_LIBRARIES})
421413
if (QL_INSTALL_BENCHMARK)
422414
install(TARGETS ql_benchmark RUNTIME DESTINATION ${QL_INSTALL_BINDIR})
423415
endif()
424-
endif()
416+
endif()

0 commit comments

Comments
 (0)