mirror of
				https://git.wownero.com/wownero/wownero.git
				synced 2024-08-15 01:03:23 +00:00 
			
		
		
		
	Link to pthreads on non-apple unix
This commit is contained in:
		
							parent
							
								
									c8626dff3f
								
							
						
					
					
						commit
						e84f39ae54
					
				
					 3 changed files with 17 additions and 12 deletions
				
			
		| 
						 | 
				
			
			@ -12,7 +12,7 @@ function(set_static_flags)
 | 
			
		|||
    set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static-libgcc -static-libstdc++")
 | 
			
		||||
  endif()
 | 
			
		||||
endfunction(set_static_flags)
 | 
			
		||||
  
 | 
			
		||||
 | 
			
		||||
include_directories(src contrib/epee/include external "${CMAKE_BINARY_DIR}/version")
 | 
			
		||||
 | 
			
		||||
if(APPLE)
 | 
			
		||||
| 
						 | 
				
			
			@ -21,6 +21,11 @@ endif()
 | 
			
		|||
 | 
			
		||||
set(STATIC ${MSVC} CACHE BOOL "Link libraries statically")
 | 
			
		||||
 | 
			
		||||
if (UNIX AND NOT APPLE)
 | 
			
		||||
  # Note that at the time of this writing the -Wstrict-prototypes flag added below will make this fail
 | 
			
		||||
  find_package(Threads REQUIRED)
 | 
			
		||||
endif()
 | 
			
		||||
 | 
			
		||||
if(MSVC)
 | 
			
		||||
  add_definitions("/bigobj /MP /W3 /GS- /D_CRT_SECURE_NO_WARNINGS /wd4996 /wd4345 /D_WIN32_WINNT=0x0600 /DWIN32_LEAN_AND_MEAN /DGTEST_HAS_TR1_TUPLE=0 /FIinline_c.h /D__SSE4_1__")
 | 
			
		||||
  # set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /Dinline=__inline")
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -30,13 +30,13 @@ add_library(cryptonote_core ${CRYPTONOTE_CORE})
 | 
			
		|||
add_executable(daemon ${DAEMON} ${P2P} ${CRYPTONOTE_PROTOCOL})
 | 
			
		||||
add_executable(connectivity_tool ${CONN_TOOL})
 | 
			
		||||
add_executable(simpleminer ${MINER})
 | 
			
		||||
target_link_libraries(daemon rpc cryptonote_core crypto common upnpc-static ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(connectivity_tool cryptonote_core crypto common ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(simpleminer cryptonote_core crypto common ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(daemon rpc cryptonote_core crypto common upnpc-static ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(connectivity_tool cryptonote_core crypto common ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(simpleminer cryptonote_core crypto common ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
add_library(rpc ${RPC})
 | 
			
		||||
add_library(wallet ${WALLET})
 | 
			
		||||
add_executable(simplewallet ${SIMPLEWALLET} )
 | 
			
		||||
target_link_libraries(simplewallet wallet rpc cryptonote_core crypto common upnpc-static ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(simplewallet wallet rpc cryptonote_core crypto common upnpc-static ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
add_dependencies(daemon version)
 | 
			
		||||
add_dependencies(rpc version)
 | 
			
		||||
add_dependencies(simplewallet version)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -31,16 +31,16 @@ add_executable(unit_tests ${UNIT_TESTS})
 | 
			
		|||
add_executable(net_load_tests_clt net_load_tests/clt.cpp)
 | 
			
		||||
add_executable(net_load_tests_srv net_load_tests/srv.cpp)
 | 
			
		||||
 | 
			
		||||
target_link_libraries(core_proxy cryptonote_core common crypto upnpc-static ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(coretests cryptonote_core common crypto ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(core_proxy cryptonote_core common crypto upnpc-static ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(coretests cryptonote_core common crypto ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(difficulty-tests cryptonote_core)
 | 
			
		||||
target_link_libraries(functional_tests cryptonote_core wallet common crypto ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(functional_tests cryptonote_core wallet common crypto ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(hash-tests crypto)
 | 
			
		||||
target_link_libraries(hash-target-tests crypto cryptonote_core)
 | 
			
		||||
target_link_libraries(performance_tests cryptonote_core common crypto ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(unit_tests cryptonote_core common crypto gtest_main ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(net_load_tests_clt cryptonote_core common crypto gtest_main ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(net_load_tests_srv cryptonote_core common crypto gtest_main ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(performance_tests cryptonote_core common crypto ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(unit_tests cryptonote_core common crypto gtest_main ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(net_load_tests_clt cryptonote_core common crypto gtest_main ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
target_link_libraries(net_load_tests_srv cryptonote_core common crypto gtest_main ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
 | 
			
		||||
 | 
			
		||||
if(NOT MSVC)
 | 
			
		||||
  set_property(TARGET gtest gtest_main unit_tests net_load_tests_clt net_load_tests_srv APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-undef -Wno-sign-compare")
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue