Skip to content

Commit fb48c62

Browse files
authored
Merge pull request #75 from Griffin86/cmake_support_for_cortex_m33
Add CMake support for Cortex M33.
2 parents 2d11b56 + ecd70a2 commit fb48c62

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
target_sources(${PROJECT_NAME} PRIVATE
2+
# {{BEGIN_TARGET_SOURCES}}
3+
4+
# {{END_TARGET_SOURCES}}
5+
)
6+
7+
target_include_directories(${PROJECT_NAME} PUBLIC
8+
${CMAKE_CURRENT_LIST_DIR}/inc
9+
)

ports/cortex_m33/gnu/inc/fx_port.h

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/***************************************************************************
2+
* Copyright (c) 2024 Microsoft Corporation
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the MIT License which is available at
6+
* https://opensource.org/licenses/MIT.
7+
*
8+
* SPDX-License-Identifier: MIT
9+
**************************************************************************/
10+
11+
12+
/**************************************************************************/
13+
/**************************************************************************/
14+
/** */
15+
/** FileX Component */
16+
/** */
17+
/** Port Specific */
18+
/** */
19+
/**************************************************************************/
20+
/**************************************************************************/
21+
22+
/* Include the generic version of fx_port.h. */
23+
#include "../../../generic/inc/fx_port.h"

0 commit comments

Comments
 (0)