Win32 compile fixes

This commit is contained in:
Eric Frias 2015-06-15 14:43:51 -04:00
parent 7027e8aab3
commit 4490c3fa48
3 changed files with 4 additions and 4 deletions

View file

@ -55,5 +55,5 @@ target_include_directories( graphene_chain
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
if(MSVC)
set_source_files_properties( db_init.cpp PROPERTIES COMPILE_FLAGS "/bigobj" )
set_source_files_properties( db_init.cpp db_block.cpp PROPERTIES COMPILE_FLAGS "/bigobj" )
endif(MSVC)

@ -1 +1 @@
Subproject commit f7cf9abe558a05c38091d0fce689aa2a91a993b5
Subproject commit 10e747409c5d656e794cb2e10cc51d5e31978cf1

View file

@ -2,11 +2,11 @@ file(GLOB COMMON_SOURCES "common/*.cpp")
file(GLOB UNIT_TESTS "tests/*.cpp")
add_executable( chain_test ${UNIT_TESTS} ${COMMON_SOURCES} )
target_link_libraries( chain_test graphene_chain graphene_app graphene_account_history fc z)
target_link_libraries( chain_test graphene_chain graphene_app graphene_account_history fc )
file(GLOB PERFORMANCE_TESTS "performance/*.cpp")
add_executable( performance_test ${PERFORMANCE_TESTS} ${COMMON_SOURCES} )
target_link_libraries( performance_test graphene_chain graphene_app graphene_account_history fc z)
target_link_libraries( performance_test graphene_chain graphene_app graphene_account_history fc )
file(GLOB BENCH_MARKS "benchmarks/*.cpp")
add_executable( chain_bench ${BENCH_MARKS} ${COMMON_SOURCES} )