diff options
author | Juergen Kahrs <Juergen.Kahrs@googlemail.com> | 2014-08-24 17:18:12 +0200 |
---|---|---|
committer | Juergen Kahrs <Juergen.Kahrs@googlemail.com> | 2014-08-24 17:18:12 +0200 |
commit | 957d172c16af37d9ad7276b9f4d6c611b3073bb1 (patch) | |
tree | eedffbf61000bfcf49fd3b111a5ed97ae287635e /README_d/README.cmake | |
parent | a95fcdabe6db429ece0819ca30702249874a8078 (diff) | |
download | egawk-957d172c16af37d9ad7276b9f4d6c611b3073bb1.tar.gz egawk-957d172c16af37d9ad7276b9f4d6c611b3073bb1.tar.bz2 egawk-957d172c16af37d9ad7276b9f4d6c611b3073bb1.zip |
Creating installation packages now works for win32 (cross-compiled), Debian (native build), and RPM (native build).
Diffstat (limited to 'README_d/README.cmake')
-rw-r--r-- | README_d/README.cmake | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/README_d/README.cmake b/README_d/README.cmake index b291d1be..7a61aed4 100644 --- a/README_d/README.cmake +++ b/README_d/README.cmake @@ -58,8 +58,13 @@ but use a different build directory. When using CMake, do this: Write a new Toolchain file for your cross-compiler and use it. - How can I build an installable file ? -Use "make package". The exact kind of installable file depends on your -operating system and defaults to TGZ. +By default, installable files will not be generated. +But if you instruct CMake about the kind of installable file you want, +then some kinds of files can be generated. +The exact kind of installable file depends on your operating system. +Possible kinds are TGZ (.tar.gz file), RPM (.rpm file), and DEB (.deb file). + cmake -DCPACK_GENERATOR=DEB .. + make package - Can I build an executable that runs on any Win32 platform ? Yes, there are two ways of doing this. |