Merge pull request #1 from LefterisJP/cmake_fixes

Fix the build - library is not a module
This commit is contained in:
Bob Summerwill 2015-12-04 03:56:17 -08:00
commit 22c22d249c

View File

@ -23,5 +23,5 @@ if (EMSCRIPTEN)
eth_use(soljson REQUIRED Solidity::solidity)
else()
add_library(soljson jsonCompiler.cpp ${HEADERS})
target_link_libraries(soljson Solidity::solidity)
target_link_libraries(soljson solidity)
endif()