<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets">
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<IncludePath>C:\nana\include;$(IncludePath)</IncludePath>
<LibraryPath>C:\nana\extrlib\vc2017;C:\nana\build\bin\vc2017;$(LibraryPath)</LibraryPath>
</PropertyGroup>
<ItemDefinitionGroup />
<ItemGroup />
</Project>
Multi-threaded Debug (/MTd) for the Debug Configuration
Multi-threaded (/MT) for the Release Configuration
* (Optional) Adds the 3rd party libraries to make linker working properly
(Do this if you decide to use the 3rd party libraries. Refer to https://github.com/cnjinhao/nana/wiki/Configuration-of-Third-Party-Libraries-for-Nana)
Open the project property page and add the following line to the property, Linker > Input > Additional Dependeicies.
nana_$(DefaultPlatformToolset)_$(Configuration)_$(PlatformTarget).lib;libjpeg.MT.$(PlatformTarget).lib;libpng.MT.$(PlatformTarget).lib;libzlib.MT.$(PlatformTarget).lib;
* (Optional) Gets rid of the console window
- Open the project property page.
- Change the options as follows for the property, Linker > System > SubSystem.
Windows (/SUBSYSTEM:WINDOWS) - Add the following keyword to the property, Linker > Advanced > Entry Point.
mainCRTStartup
'프로그래밍 언어' 카테고리의 다른 글
STS(Eclipse)에서 JAVA소스 에러가 패키지 탐색기에 표시되지 않는 문제 (0) | 2018.10.04 |
---|---|
[CppCon 2014] Microsoft w/ C++ to Deliver Office Across Different Platforms (0) | 2018.06.25 |
Setting up the Rust development envrionment with vscode(Windows 10 64bit)) (1) | 2018.06.04 |
Magic statics since C++11 (0) | 2018.05.29 |
C++로 JAVA의 DataInputStream, DataOutputStream 흉내내기 (0) | 2017.09.14 |