Skip to content

Instructions for MS VC 2013 update 4

qPCR4vir edited this page Oct 28, 2015 · 1 revision

(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 or Debug configurations for the platforms Win32 or x64. 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.
  • Programming with Nana: ( πŸ’‘ 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 to VC++ Directory / Include Directories (here NanaPath is the absolute path to nana or the relative path from your project to nana) and
      • NanaPath\build\bin\vc2013 to VC++ Directory / Library Directories .
      • Finally add nana_$(ConfigurationName)_$(PlatformShortName).lib to Linker / 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).
Clone this wiki locally