Instructions for MS VC 2013 update 4 - qPCR4vir/nana-docs GitHub Wiki
(with the branch hotfixes-1.0.1
:)
- Compile nana:
- Clone or download hotfixes-1.0.1 into the directory
NanaPath
. - Open the solution at
NanaPath\build\vc2013\nana.sln
. It include only one project: nana. - The library can be compiled in
Release
orDebug
configurations for the platformsWin32
orx64
. An static library will be generated in the directory:NanaPath\build\bin\vc2013
with names in the form:nana_$(ConfigurationName)_$(PlatformShortName).lib
, for example:nana_Debug_x86.lib
,nana_Release_x64.lib
, etc. corresponding to your building options.
- Clone or download hotfixes-1.0.1 into the directory
- Programming with Nana: ( :bulb: just copy, rename and modify one of the paar of demo projects and filter files)
- Add to your application (executable) project using
PROJECT / Propierties / Configuration Propierties
:NanaPath\include
toVC++ Directory / Include Directories
(here NanaPath is the absolute path to nana or the relative path from your project to nana) andNanaPath\build\bin\vc2013
toVC++ Directory / Library Directories
.- Finally add
nana_$(ConfigurationName)_$(PlatformShortName).lib
toLinker / Input / Additional Dependencies
providing you use the same configuration name in your project that in the nana solution (or add the corresponding nana-lib name).
- Add to your application (executable) project using