You can use macros to modify the way the project system refers to files.
Macros are divided into four classes:
- System macros defined by SEGGER Embedded Studio relay information about the environment, such as paths to common directories.
- Global macros are saved in the environment and are shared across all solutions and projects. Typically, you would set up paths to libraries and any external items here.
- Project macros are saved as project options in the project file and can define values specific to the solution or project in which they are defined.
- Build macros are generated by the project system when you build your project.
System macros
System macros are defined by SEGGER Embedded Studio itself and as such are read-only. System macros can be used in project options, environment settings and to refer to files. See System macros list for the list of System macros.
Global macros
Global macros are store in the environment option Build Macros.
To define a global macro:
- Use Tools > Options to show the environment options dialog.
- In the Environment Options dialog's Building group, select the Build Macros option.
- Click the ellipsis button on the right.
- Set the macro using the syntax name = replacement text.
Project macros
To define a project macro:
To set the project macros:
- Select the appropriate solution/project in the Project Explorer.
- Use Project > Options to show the project options dialog.
- In the Project Options dialog's General Options group, select the Macros option.
- Click the ellipsis button on the right.
- Set the macro using the syntax name = replacement text.
Build macros
Build macros are defined by the project system for a build of a given project node. See Build macros list for the list of build macros.
Using macros
You can use a macro for a project option or environment setting by using the $(macro) syntax. For example, the Object File Name option has a default value of $(IntDir)/$(InputName)$(OBJ).
You can also specify a default value for a macro if it is undefined using the $(macro:default) syntax. For example, $(MyMacro:0) would expand to 0 if the macro MyMacro has not been defined.
from : https://studio.segger.com/index.htm?https://studio.segger.com/ide_project_macros.htm
첫등록 : 2018년 1월 5일
최종수정 :
본 글 단축주소 : https://igotit.tistory.com/2024
'임베디드.일렉트로닉스' 카테고리의 다른 글
SEGGER Embedded Studio. 새 프로젝트 생성경로 설정 (0) | 2019.01.12 |
---|---|
SEGGER Embedded Studio. CMSIS Configuration Wizard (0) | 2019.01.05 |
SEGGER Embedded Stdudio 다운로드. 설치. 업데이트 방법 (0) | 2019.01.03 |
nRF Sniffer. 다운로드, 설치. (0) | 2018.12.29 |
KEIL MDK-ARM uVision. Trace: SW Buffer Overrun (0) | 2018.12.18 |
댓글