Skip to content

Commit 51af26f

Browse files
committed
Fixed interface file paths for CMake files
1 parent 4d4be01 commit 51af26f

3 files changed

Lines changed: 5 additions & 8 deletions

File tree

libs/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
cmake_minimum_required(VERSION 3.15)
22

3-
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/libcorrect)
4-
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/tiny_aes)
53
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/gnc_code)
64

obc/bl/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ set(BL_SOURCES
1212
${CMAKE_CURRENT_SOURCE_DIR}/source/bl_logging.c
1313
${CMAKE_CURRENT_SOURCE_DIR}/F021_Flash_API/source/Fapi_UserDefinedFunctions.c
1414

15-
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/commands/obc_gs_command_pack.c
16-
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/commands/obc_gs_commands_response_pack.c
17-
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/commands/obc_gs_command_unpack.c
15+
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/commands/src/obc_gs_command_pack.c
16+
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/commands/src/obc_gs_commands_response_pack.c
17+
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/commands/src/obc_gs_command_unpack.c
1818
${CMAKE_SOURCE_DIR}/interfaces/data_pack_unpack/data_pack_utils.c
1919
${CMAKE_SOURCE_DIR}/interfaces/data_pack_unpack/data_unpack_utils.c
2020
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/common/obc_gs_crc.c
@@ -26,7 +26,7 @@ set(BL_INCLUDES
2626

2727
${CMAKE_SOURCE_DIR}/obc/app/sys/utils
2828
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/common
29-
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/commands
29+
${CMAKE_SOURCE_DIR}/interfaces/obc_gs_interface/commands/inc
3030
${CMAKE_SOURCE_DIR}/interfaces/data_pack_unpack
3131
)
3232

test/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ execute_process(
1010
# Set the SOURCE_PATH using the detected REPO_ROOT
1111
add_compile_definitions(SOURCE_PATH="${REPO_ROOT}/")
1212

13-
add_subdirectory(test_interfaces/unit)
14-
add_subdirectory(test_obc/unit)
13+
add_subdirectory(unit)
1514

1615
# TODO: uncomment once there's at least 1 test
1716
# add_subdirectory(test_gs/unit)

0 commit comments

Comments
 (0)