Building Miranda: Difference between revisions

From Miranda NG
Jump to navigation Jump to search
No edit summary
(Marked this version for translation)
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{TNT|Note|<translate>The following was tested in Windows 10.</translate>}}
{{TNT|Note|<translate><!--T:1--> The following was tested in Windows 10.</translate>}}


<translate>
<translate>
<!--T:2-->
* Obtain [<tvar|miranda_sources>https://github.com/miranda-ng/miranda-ng</> Miranda NG sources]
* Obtain [<tvar|miranda_sources>https://github.com/miranda-ng/miranda-ng</> Miranda NG sources]
* Install Visual Studio 2017/2019/2022
* Install Visual Studio 2017/2019/2022
* Bare minimum VS components:
* Bare minimum Visual Studio 2017 components:
** Static analysis tools
** Static analysis tools
** Text Template Transformation
** Text Template Transformation
Line 15: Line 16:
** Windows XP support for C++
** Windows XP support for C++
** Visual Studio C++ core features
** Visual Studio C++ core features
* open solution (/bin15/mir_full.sln for VS2017) and build all solutin (F7) or particular plugins (build mir_core first)  
* Open mir_full.sln solution (located at <tt>/bin15</tt> for Visual Studio 2017, <tt>/bin16</tt> for Visual Studio 2019 or <tt>/bin17</tt> for Visual Studio 2022) and build all solutin (F7) or particular plugins (in this case build <tt>mir_core</tt> first).
</translate>
 
{{TNT|Important|<translate><!--T:3--> For Visual Studio 2017 you need to add following registry key:</translate>}}
<pre style="overflow:auto;">
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment]
"DoBundleInstallationChecks"="false"
</pre>
 
<translate>
<!--T:4-->
You need [<tvar|freepascal>https://www.freepascal.org</> FreePascal] to build plugins written in Pascal ({{Plugin|Actman}}, {{Plugin|mRadio}}, {{Plugin|Watrack}}), except {{Plugin|HistoryPP|History++}} which requires RAD Studio XE2.
 
<!--T:5-->
You need [<tvar|perl>https://learn.perl.org/installing/windows.html</> Perl] and [<tvar|nasm>https://www.nasm.us</> NASM] to build [<tvar|openssl>https://www.openssl.org</> OpenSSL].
</translate>
</translate>


[[Category:Help{{#translation:}}|{{#getdisplaytitle:{{FULLPAGENAME}}}}]]
[[Category:Help{{#translation:}}|{{#getdisplaytitle:{{FULLPAGENAME}}}}]]

Revision as of 01:52, 28 October 2022

Other languages:
Note
The following was tested in Windows 10.
  • Obtain Miranda NG sources
  • Install Visual Studio 2017/2019/2022
  • Bare minimum Visual Studio 2017 components:
    • Static analysis tools
    • Text Template Transformation
    • C# and Visual Basic Roslyn compilers
    • MSBuild
    • VC++ 2017 version 15.9 v14.16 latest v141 tools
    • Visual C++ 2017 Redistributable Update
    • Windows Universal CRT SDK
    • Windows XP support for C++
    • Visual Studio C++ core features
  • Open mir_full.sln solution (located at /bin15 for Visual Studio 2017, /bin16 for Visual Studio 2019 or /bin17 for Visual Studio 2022) and build all solutin (F7) or particular plugins (in this case build mir_core first).
Important
For Visual Studio 2017 you need to add following registry key:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment]
"DoBundleInstallationChecks"="false"

You need FreePascal to build plugins written in Pascal (Actman, mRadio, Watrack), except History++ which requires RAD Studio XE2.

You need Perl and NASM to build OpenSSL.