General
- Output Directory
- exe, lib, dll 등의 빌드 결과물이 생성될 위치
- $(SolutionDir)Build\$(Platform)_$(Configuration)\
- Intermediate Directory
- 빌드시 생성되는 중간 파일들이 생성될 위치(e.g .obj files)
- $(SolutionDir)Build\Intermediates\$(ProjectName)$(Platform)$(Configuration)\
- ex) JFL\Build\Intermediates\JFLDebugx86
Advanced
- Character Set
- _UNICODE, _MBCS 매크로 셋팅 여부
- Not Set
C/C++ >
- Multi-processor Compilation
- Enable String Pooling
- Enable C++ Exceptions
- Enable Run-Time Type Information
- polymorphism을 지원한다면 당연히 enable
- Yes (/GR)
- Object File Name
- Disable Language Extensions(선택)
- 표준 C++에서 MS만의 확장 문법을 쓸 지에 대한 여부.
- Yes(/Za)