init
This commit is contained in:
50
lib_sw_pll/examples/simple_lut/simple_lut.cmake
Normal file
50
lib_sw_pll/examples/simple_lut/simple_lut.cmake
Normal file
@@ -0,0 +1,50 @@
|
||||
#**********************
|
||||
# Gather Sources
|
||||
#**********************
|
||||
file(GLOB_RECURSE APP_SOURCES ${CMAKE_CURRENT_LIST_DIR}/src/*.c
|
||||
${CMAKE_CURRENT_LIST_DIR}/src/*.xc
|
||||
${CMAKE_CURRENT_LIST_DIR}/../shared/src/*.c )
|
||||
set(APP_INCLUDES ${CMAKE_CURRENT_LIST_DIR}/src
|
||||
${CMAKE_CURRENT_LIST_DIR}/../shared/src
|
||||
)
|
||||
|
||||
#**********************
|
||||
# Flags
|
||||
#**********************
|
||||
set(APP_COMPILER_FLAGS
|
||||
-Os
|
||||
-g
|
||||
-report
|
||||
-fxscope
|
||||
-mcmodel=large
|
||||
-Wno-xcore-fptrgroup
|
||||
${CMAKE_CURRENT_LIST_DIR}/src/config.xscope
|
||||
-target=XCORE-AI-EXPLORER
|
||||
)
|
||||
|
||||
set(APP_COMPILE_DEFINITIONS
|
||||
DEBUG_PRINT_ENABLE=1
|
||||
PLATFORM_SUPPORTS_TILE_0=1
|
||||
PLATFORM_SUPPORTS_TILE_1=1
|
||||
PLATFORM_SUPPORTS_TILE_2=0
|
||||
PLATFORM_SUPPORTS_TILE_3=0
|
||||
PLATFORM_USES_TILE_0=1
|
||||
PLATFORM_USES_TILE_1=1
|
||||
)
|
||||
|
||||
set(APP_LINK_OPTIONS
|
||||
-report
|
||||
-target=XCORE-AI-EXPLORER
|
||||
${CMAKE_CURRENT_LIST_DIR}/src/config.xscope
|
||||
)
|
||||
|
||||
#**********************
|
||||
# Tile Targets
|
||||
#**********************
|
||||
add_executable(simple_lut)
|
||||
target_sources(simple_lut PUBLIC ${APP_SOURCES})
|
||||
target_include_directories(simple_lut PUBLIC ${APP_INCLUDES})
|
||||
target_compile_definitions(simple_lut PRIVATE ${APP_COMPILE_DEFINITIONS})
|
||||
target_compile_options(simple_lut PRIVATE ${APP_COMPILER_FLAGS})
|
||||
target_link_options(simple_lut PRIVATE ${APP_LINK_OPTIONS})
|
||||
target_link_libraries(simple_lut PUBLIC lib_sw_pll)
|
||||
Reference in New Issue
Block a user