Skip to content

Commit dee0c77

Browse files
committedMay 6, 2024·
Experimenting
1 parent 4bc0cea commit dee0c77

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed
 

‎src/CMakeLists.txt

-5
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,11 @@ if (MYSQLPOOL_LOGDEP)
3232
add_dependencies(${PROJECT_NAME} ${MYSQLPOOL_LOGDEP})
3333
endif()
3434

35-
if(NOT MSVC)
36-
set(STANDARD_FS_LIB stdc++fs)
37-
endif()
38-
3935
target_link_libraries(${PROJECT_NAME}
4036
${Boost_LIBRARIES}
4137
OpenSSL::SSL
4238
OpenSSL::Crypto
4339
ZLIB::ZLIB
44-
${STANDARD_FS_LIB}
4540
${CMAKE_THREAD_LIBS_INIT}
4641
)
4742

‎tests/CMakeLists.txt

-10
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ target_include_directories(unit_tests
4545
target_link_libraries(unit_tests
4646
${GTEST_LIBRARIES}
4747
mysqlpool
48-
# ${Boost_LIBRARIES}
49-
# ${ZLIB_LIBRARIES}
50-
# ${OPENSSL_LIBRARIES}
51-
# stdc++fs
52-
# ${CMAKE_THREAD_LIBS_INIT}
5348
)
5449

5550
add_test(NAME unit_tests COMMAND unit_tests)
@@ -83,11 +78,6 @@ target_include_directories(integration_tests
8378
target_link_libraries(integration_tests
8479
${GTEST_LIBRARIES}
8580
mysqlpool
86-
# ${Boost_LIBRARIES}
87-
# ${ZLIB_LIBRARIES}
88-
# ${OPENSSL_LIBRARIES}
89-
# stdc++fs
90-
# ${CMAKE_THREAD_LIBS_INIT}
9181
)
9282

9383
add_test(NAME integration_tests COMMAND integration_tests)

0 commit comments

Comments
 (0)
Please sign in to comment.