Changes between Version 7 and Version 8 of HowToBuildFromSource
- Timestamp:
- Apr 16, 2008 9:42:35 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToBuildFromSource
v7 v8 99 99 Windows with Visual C++: 100 100 101 102 {{{ 101 103 cmake -DCMAKE_BUILD_TYPE=Debug -G "NMake Makefiles" .. 102 104 nmake 105 }}} 106 103 107 104 108 Windows with MinGW: 105 109 110 111 {{{ 106 112 cmake -DCMAKE_BUILD_TYPE=Debug -G "MinGW Makefiles" .. 107 113 make 114 }}} 115 108 116 109 117 == Linux == … … 111 119 GNU/Linux : 112 120 121 122 {{{ 113 123 mkdir /path/to/qutecom/builddir 114 124 cd /path/to/qutecom/builddir 115 125 cmake -DCMAKE_BUILD_TYPE=Debug /path/to/qutecom 116 126 make 127 }}} 128 117 129 118 130 === [wiki:FedoraPlatformSupport Fedora] === … … 120 132 == MacOS X == 121 133 134 135 {{{ 122 136 mkdir /path/to/qutecom/builddir 123 137 cd /path/to/qutecom/builddir 124 138 cmake -DCMAKE_BUILD_TYPE=Debug /path/to/qutecom 125 139 make 140 141 }}} 126 142 127 143
