diff options
| author | Evan Lojewski <github@meklort.com> | 2020-03-02 22:10:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-02 22:10:47 -0700 |
| commit | d53b8aa524a3ea2cce3fc323f4ac3885fcdc04aa (patch) | |
| tree | b01ea6b8ce19d902ec596e920e7c52d612e1efd2 /utils | |
| parent | 32e336155340a4c975808cf9c6a4a9f963983499 (diff) | |
| download | bcm5719-ortega-d53b8aa524a3ea2cce3fc323f4ac3885fcdc04aa.tar.gz bcm5719-ortega-d53b8aa524a3ea2cce3fc323f4ac3885fcdc04aa.zip | |
release: Add support for generating a release package. (#54)
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/ape2elf/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | utils/apeconsole/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | utils/bcmflash/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | utils/bcmregtool/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | utils/bin2c/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | utils/elf2ape/CMakeLists.txt | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/utils/ape2elf/CMakeLists.txt b/utils/ape2elf/CMakeLists.txt index 663bf9e..069d184 100644 --- a/utils/ape2elf/CMakeLists.txt +++ b/utils/ape2elf/CMakeLists.txt @@ -54,4 +54,4 @@ include_directories(elfio) simulator_add_executable(${PROJECT_NAME} ${SOURCES}) target_link_libraries(${PROJECT_NAME} PRIVATE NVRam VPD simulator OptParse Compress elfio) -INSTALL(TARGETS ${PROJECT_NAME} DESTINATION .) +INSTALL(TARGETS ${PROJECT_NAME} DESTINATION bin) diff --git a/utils/apeconsole/CMakeLists.txt b/utils/apeconsole/CMakeLists.txt index 8906bfd..02ecdb6 100644 --- a/utils/apeconsole/CMakeLists.txt +++ b/utils/apeconsole/CMakeLists.txt @@ -9,4 +9,4 @@ simulator_add_executable(${PROJECT_NAME} ${SOURCES}) target_link_libraries(${PROJECT_NAME} PRIVATE APE ) target_link_libraries(${PROJECT_NAME} PRIVATE simulator OptParse elfio) -INSTALL(TARGETS ${PROJECT_NAME} DESTINATION .) +INSTALL(TARGETS ${PROJECT_NAME} DESTINATION bin) diff --git a/utils/bcmflash/CMakeLists.txt b/utils/bcmflash/CMakeLists.txt index 84177b3..e254365 100644 --- a/utils/bcmflash/CMakeLists.txt +++ b/utils/bcmflash/CMakeLists.txt @@ -8,4 +8,4 @@ set(SOURCES simulator_add_executable(${PROJECT_NAME} ${SOURCES}) target_link_libraries(${PROJECT_NAME} PRIVATE NVRam VPD simulator OptParse) -INSTALL(TARGETS ${PROJECT_NAME} DESTINATION .) +INSTALL(TARGETS ${PROJECT_NAME} DESTINATION bin) diff --git a/utils/bcmregtool/CMakeLists.txt b/utils/bcmregtool/CMakeLists.txt index 2a3cb86..db4907f 100644 --- a/utils/bcmregtool/CMakeLists.txt +++ b/utils/bcmregtool/CMakeLists.txt @@ -12,4 +12,4 @@ simulator_add_executable(${PROJECT_NAME} ${SOURCES}) target_link_libraries(${PROJECT_NAME} PRIVATE NVRam VPD MII APE apeloader-binary NCSI Network) target_link_libraries(${PROJECT_NAME} PRIVATE simulator OptParse elfio) -INSTALL(TARGETS ${PROJECT_NAME} DESTINATION .) +INSTALL(TARGETS ${PROJECT_NAME} DESTINATION bin) diff --git a/utils/bin2c/CMakeLists.txt b/utils/bin2c/CMakeLists.txt index c4f291b..bd4e965 100644 --- a/utils/bin2c/CMakeLists.txt +++ b/utils/bin2c/CMakeLists.txt @@ -53,4 +53,4 @@ simulator_add_executable(${PROJECT_NAME} ${SOURCES}) target_link_libraries(${PROJECT_NAME} PRIVATE OptParse) include_directories(${CMAKE_SOURCE_DIR}/include) -INSTALL(TARGETS ${PROJECT_NAME} DESTINATION .) +INSTALL(TARGETS ${PROJECT_NAME} DESTINATION bin) diff --git a/utils/elf2ape/CMakeLists.txt b/utils/elf2ape/CMakeLists.txt index 1eb49df..0801380 100644 --- a/utils/elf2ape/CMakeLists.txt +++ b/utils/elf2ape/CMakeLists.txt @@ -52,4 +52,4 @@ set(SOURCES simulator_add_executable(${PROJECT_NAME} ${SOURCES}) target_link_libraries(${PROJECT_NAME} PRIVATE NVRam VPD simulator OptParse Compress elfio) -INSTALL(TARGETS ${PROJECT_NAME} DESTINATION .) +INSTALL(TARGETS ${PROJECT_NAME} DESTINATION bin) |

