summaryrefslogtreecommitdiff
path: root/test/cmake/libs/CMakeLists.txt
blob: 4552fcbbb38a49d386dce98357425446dbc2b738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)

project(libs LANGUAGES C)

if($ENV{ENABLE_64})
  message(STATUS "Building for 64bit")
else()
  add_compile_options(-m32)
  add_link_options(-m32)
  message(STATUS "Building for 32bit")
endif()
message(STATUS "Using toolchain file: ${CMAKE_TOOLCHAIN_FILE}.")

set(TX_USER_FILE ${CMAKE_CURRENT_SOURCE_DIR}/tx_user.h)
get_filename_component(
  externals ${CMAKE_CURRENT_SOURCE_DIR}/../.. ABSOLUTE)
add_subdirectory(${externals}/threadx threadx)
add_subdirectory(${externals}/filex filex)
target_compile_options(threadx PRIVATE -DTX_ENABLE_EVENT_TRACE)
if(NOT DEFINED ENV{ENABLE_IDLE})
  target_compile_options(threadx PRIVATE -DTX_LINUX_NO_IDLE_ENABLE)
endif()

foreach(lib threadx filex)
  get_target_property(dirs ${lib} INCLUDE_DIRECTORIES)
  execute_process(COMMAND mkdir -p ${CMAKE_BINARY_DIR}/inc)
  foreach(dir ${dirs})
    file(GLOB header_files ${dir}/*.h)
    foreach(header_file ${header_files})
      execute_process(COMMAND ln -sf ${header_file} ${CMAKE_BINARY_DIR}/inc)
    endforeach()
  endforeach()
endforeach()