aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake')
-rw-r--r--cmake/UseDev.cmake4
-rw-r--r--cmake/UseSolidity.cmake2
2 files changed, 3 insertions, 3 deletions
diff --git a/cmake/UseDev.cmake b/cmake/UseDev.cmake
index 1f4c9a2d..4461a8a0 100644
--- a/cmake/UseDev.cmake
+++ b/cmake/UseDev.cmake
@@ -22,9 +22,9 @@ function(eth_apply TARGET REQUIRED SUBMODULE)
endif()
- if (${SUBMODULE} STREQUAL "devcore")
+ if (${SUBMODULE} STREQUAL "soldevcore")
eth_use(${TARGET} ${REQUIRED} Dev::base)
- target_link_libraries(${TARGET} devcore)
+ target_link_libraries(${TARGET} soldevcore)
endif()
endfunction()
diff --git a/cmake/UseSolidity.cmake b/cmake/UseSolidity.cmake
index 46e2cac9..8db2f848 100644
--- a/cmake/UseSolidity.cmake
+++ b/cmake/UseSolidity.cmake
@@ -25,7 +25,7 @@ function(eth_apply TARGET REQUIRED SUBMODULE)
endif()
if (${SUBMODULE} STREQUAL "solidity" OR ${SUBMODULE} STREQUAL "")
- eth_use(${TARGET} ${REQUIRED} Dev::devcore Solidity::evmasm)
+ eth_use(${TARGET} ${REQUIRED} Dev::soldevcore Solidity::evmasm)
target_link_libraries(${TARGET} ${Solidity_SOLIDITY_LIBRARIES})
endif()