VS 2019 .
Property Manager 창 열기
메뉴 : View -> Other Windows -> Property Manager 클릭
- Open the Property Manager window. (On the menu bar, choose View > Property Manager or View > Other Windows > Property Manager.) Open the shortcut menu for a property sheet (its name ends in .user) and then choose Properties. The Property Pages dialog box for that property sheet opens.
- In the left pane of the dialog box, select User Macros. In the right pane, choose the Add Macro button to open the Add User Macro dialog box.
- In the dialog box, specify a name and value for the macro. Optionally, select the Set this macro as an environment variable in the build environment check box.
위의 예와 같이 사용자 정의 macro 추가해두면 프로젝트 설정에서 Include Directory 에 경로 기록시 $(CySDK_CPP_PATH) 를 기록한다.
모든 프로젝트에서 공통 적용되는 Include Directory 설정법
- 위 설정창의 User Macros 아래에 보이는 VC++Directory 의 Include Directories 에 경로 기록한 이후 생성되는 VC++ 모든 프로젝트에 공통 적용되므로 프로젝트마다 개별적으로 헤더파일 인클루트 경로 지정하지 않아도 되므로 매우 편리함.
모든 프로젝트에서 공통 적용되는 Library Directory 설정법
- 위 설정창의 User Macros 아래에 보이는 VC++Directory 의 Library Directories 에 경로 기록한 이후 생성되는 VC++ 모든 프로젝트에 공통 적용된다.
Library Directory 지정 용도 : 아래 구문처럼 lib 파일 경로 지정할 때 베이스 경로 지정하는 용도.
#pragma comment(lib,"CyS2_CyFinBotFile/x64/Release/CyS2LE1_CyFinBotFile.LIB" )
from : docs.microsoft.com/ko-kr/cpp/build/working-with-project-properties?view=vs-2019
2024.03.16 추가 . VS2022 에서는 설정 방식 변경됨.
VS 2022 에서는 앞의 설명과 같은 전역 매크로 설정 안되며, 프로젝트 단위로 매크로 설정가능.
첫 등록 : 2020.09.15
최종 수정 : 2024.03.16
단축 주소 : https://igotit.tistory.com/2593
'VisualStudio.C++.C#' 카테고리의 다른 글
Visual C++. 구조체 얼라인먼트. 디폴트 설정. (0) | 2020.10.05 |
---|---|
VC++2019. MFC Class From ActiveX Control.. 기능 제거됨. (0) | 2020.09.18 |
Visual C++ 64bit, 32bit 프로젝트 개발 환경 셋팅. (0) | 2020.09.14 |
Visual C++. 솔루션 하위 폴더 . 프로젝트 하위 필터. 아이템 컨테이너 (0) | 2020.09.14 |
VC++2017 버그. 클래스 위저드 에서 메시지 추가 기능 안되는 문제 해결 (0) | 2020.04.05 |
댓글