diff options
author | Bob Summerwill <bob@summerwill.net> | 2016-08-06 11:16:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-06 11:16:09 +0800 |
commit | e3c1bf738522922036d9332cd9d7006b1f009ef9 (patch) | |
tree | 5e662020877a76ecadddab48b0589f269ea7f376 | |
parent | 3c93a22d478b9439d6e226ad7954fe571117f439 (diff) | |
parent | 7ea57705982b77a627dd3454fcd73a340714157c (diff) | |
download | dexon-solidity-e3c1bf738522922036d9332cd9d7006b1f009ef9.tar dexon-solidity-e3c1bf738522922036d9332cd9d7006b1f009ef9.tar.gz dexon-solidity-e3c1bf738522922036d9332cd9d7006b1f009ef9.tar.bz2 dexon-solidity-e3c1bf738522922036d9332cd9d7006b1f009ef9.tar.lz dexon-solidity-e3c1bf738522922036d9332cd9d7006b1f009ef9.tar.xz dexon-solidity-e3c1bf738522922036d9332cd9d7006b1f009ef9.tar.zst dexon-solidity-e3c1bf738522922036d9332cd9d7006b1f009ef9.zip |
Merge pull request #822 from chriseth/noheaders
Do not install headers.
-rw-r--r-- | libdevcore/CMakeLists.txt | 2 | ||||
-rw-r--r-- | libevmasm/CMakeLists.txt | 2 | ||||
-rw-r--r-- | liblll/CMakeLists.txt | 2 | ||||
-rw-r--r-- | libsolidity/CMakeLists.txt | 1 |
4 files changed, 0 insertions, 7 deletions
diff --git a/libdevcore/CMakeLists.txt b/libdevcore/CMakeLists.txt index 43dd71c3..5401c7af 100644 --- a/libdevcore/CMakeLists.txt +++ b/libdevcore/CMakeLists.txt @@ -12,5 +12,3 @@ add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS}) eth_use(${EXECUTABLE} REQUIRED Jsoncpp Dev::base) install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) -install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} ) - diff --git a/libevmasm/CMakeLists.txt b/libevmasm/CMakeLists.txt index 8a283976..e33301ea 100644 --- a/libevmasm/CMakeLists.txt +++ b/libevmasm/CMakeLists.txt @@ -11,5 +11,3 @@ add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS}) eth_use(${EXECUTABLE} REQUIRED Dev::devcore) install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) -install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} ) - diff --git a/liblll/CMakeLists.txt b/liblll/CMakeLists.txt index 97a1a186..3b63e495 100644 --- a/liblll/CMakeLists.txt +++ b/liblll/CMakeLists.txt @@ -19,5 +19,3 @@ eth_use(${EXECUTABLE} REQUIRED Solidity::evmasm) #target_link_libraries(${EXECUTABLE} evmasm) install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) -install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} ) - diff --git a/libsolidity/CMakeLists.txt b/libsolidity/CMakeLists.txt index e86792c1..dc06b0c8 100644 --- a/libsolidity/CMakeLists.txt +++ b/libsolidity/CMakeLists.txt @@ -18,5 +18,4 @@ add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS}) eth_use(${EXECUTABLE} REQUIRED Dev::devcore Solidity::evmasm) install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) -install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} ) |