58 lines
1.8 KiB
CMake
58 lines
1.8 KiB
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if (NOT DEFINED ENV{BSIM_COMPONENTS_PATH})
|
|
message(FATAL_ERROR "This board requires the BabbleSim simulator. Please set\
|
|
the environment variable BSIM_COMPONENTS_PATH to point to its components \
|
|
folder. More information can be found in\
|
|
https://babblesim.github.io/folder_structure_and_env.html")
|
|
endif()
|
|
if (NOT DEFINED ENV{BSIM_OUT_PATH})
|
|
message(FATAL_ERROR "This board requires the BabbleSim simulator. Please set\
|
|
the environment variable BSIM_OUT_PATH to point to the folder where the\
|
|
simulator is compiled to. More information can be found in\
|
|
https://babblesim.github.io/folder_structure_and_env.html")
|
|
endif()
|
|
|
|
zephyr_library()
|
|
zephyr_library_compile_definitions(NO_POSIX_CHEATS)
|
|
|
|
#Due to the BLE controller assumption about enum size
|
|
zephyr_compile_options(
|
|
-fshort-enums
|
|
)
|
|
|
|
zephyr_library_sources(
|
|
irq_handler.c
|
|
cpu_wait.c
|
|
bstests_entry.c
|
|
argparse.c
|
|
main.c
|
|
time_machine.c
|
|
trace_hook.c
|
|
cmsis.c
|
|
)
|
|
|
|
zephyr_library_include_directories(
|
|
$ENV{BSIM_COMPONENTS_PATH}/libUtilv1/src/
|
|
$ENV{BSIM_COMPONENTS_PATH}/libPhyComv1/src/
|
|
$ENV{BSIM_COMPONENTS_PATH}/libRandv2/src/
|
|
${ZEPHYR_BASE}/kernel/include
|
|
${ZEPHYR_BASE}/arch/posix/include
|
|
)
|
|
|
|
zephyr_ld_options(
|
|
-lm
|
|
)
|
|
|
|
set(libpath $ENV{BSIM_OUT_PATH}/lib)
|
|
zephyr_library_import(bsim_libUtilv1 ${libpath}/libUtilv1.32.a)
|
|
zephyr_library_import(bsim_libPhyComv1 ${libpath}/libPhyComv1.32.a)
|
|
zephyr_library_import(bsim_lib2G4PhyComv1 ${libpath}/lib2G4PhyComv1.32.a)
|
|
zephyr_library_import(bsim_libRandv2 ${libpath}/libRandv2.32.a)
|
|
|
|
# This is due to some tests using _Static_assert which is a 2011 feature, but
|
|
# otherwise relying on compilers supporting it also when set to C99.
|
|
# This was in general ok, but with some host compilers and C library versions
|
|
# it led to problems. So we override it to 2011 for native applications.
|
|
set_property(GLOBAL PROPERTY CSTD c11)
|