Added softfloat library into top level build system

This commit is contained in:
2018-04-24 10:26:55 +02:00
parent dcaf5467e8
commit bc7450dad2
5 changed files with 10 additions and 22 deletions

View File

@ -68,7 +68,7 @@ include_directories(
add_dependent_subproject(dbt-core)
add_dependent_subproject(sc-components)
add_dependent_header(util)
add_dependent_subproject(riscv)
include_directories(
${PROJECT_SOURCE_DIR}/incl

View File

@ -41,6 +41,7 @@ add_executable(${APPLICATION_NAME} ${APP_SOURCES})
target_link_libraries(${APPLICATION_NAME} ${LIBRARY_NAME})
target_link_libraries(${APPLICATION_NAME} risc-v)
target_link_libraries(${APPLICATION_NAME} dbt-core)
target_link_libraries(${APPLICATION_NAME} softfloat)
target_link_libraries(${APPLICATION_NAME} sc-components)
target_link_libraries(${APPLICATION_NAME} ${CONAN_LIBS_SEASOCKS})
target_link_libraries(${APPLICATION_NAME} external)