mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #1855 from imapp-pl/pr/cmake_runtime_output_directory
CMake: set default RUNTIME_OUTPUT_DIRECTORY property to "bin"
This commit is contained in:
commit
ddbb161bf2
@ -19,15 +19,10 @@ set(EXECUTABLE evmasm)
|
||||
|
||||
file(GLOB HEADERS "*.h")
|
||||
|
||||
if (ETH_STATIC)
|
||||
add_library(${EXECUTABLE} STATIC ${SRC_LIST} ${HEADERS})
|
||||
else()
|
||||
add_library(${EXECUTABLE} SHARED ${SRC_LIST} ${HEADERS})
|
||||
endif()
|
||||
add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS})
|
||||
|
||||
target_link_libraries(${EXECUTABLE} evmcore)
|
||||
target_link_libraries(${EXECUTABLE} devcrypto)
|
||||
|
||||
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
||||
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user