Changes between Version 7 and Version 8 of HowToBuildFromSource


Ignore:
Timestamp:
Apr 16, 2008 9:42:35 PM (5 years ago)
Author:
cervajs
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToBuildFromSource

    v7 v8  
    9999Windows with Visual C++: 
    100100 
     101     
     102{{{ 
    101103    cmake -DCMAKE_BUILD_TYPE=Debug -G "NMake Makefiles" .. 
    102104    nmake 
     105}}} 
     106 
    103107 
    104108Windows with MinGW: 
    105109 
     110     
     111{{{ 
    106112    cmake -DCMAKE_BUILD_TYPE=Debug -G "MinGW Makefiles" .. 
    107113    make 
     114}}} 
     115 
    108116 
    109117== Linux == 
     
    111119GNU/Linux :  
    112120 
     121     
     122{{{ 
    113123    mkdir /path/to/qutecom/builddir 
    114124    cd /path/to/qutecom/builddir 
    115125    cmake -DCMAKE_BUILD_TYPE=Debug /path/to/qutecom 
    116126    make 
     127}}} 
     128 
    117129 
    118130=== [wiki:FedoraPlatformSupport Fedora] === 
     
    120132== MacOS X == 
    121133 
     134     
     135{{{ 
    122136    mkdir /path/to/qutecom/builddir 
    123137    cd /path/to/qutecom/builddir 
    124138    cmake -DCMAKE_BUILD_TYPE=Debug /path/to/qutecom 
    125139    make 
     140 
     141}}} 
    126142 
    127143