cmake: update readmes, we have now a top level cmake file

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38611 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Peter Kümmel 2011-05-07 11:47:30 +00:00
parent f81f512390
commit 8f993bfcf1
2 changed files with 8 additions and 8 deletions

View File

@ -41,7 +41,7 @@ Compiling with Microsoft Visual C++
- Run the CMake GUI.
- Set the source code path to C:\LyX\lyx-20\development\cmake
- Set the source code path to C:\LyX\lyx-20
Set the build path to C:\LyX\lyx-20-build
Click Configure and set the generator to Visual Studio 10.

View File

@ -86,24 +86,24 @@ Using cmake
Here some examples, assuming the build folder is in the same folder as the source tree:
* Makefiles on Linux
cmake ../trunk/development/cmake
cmake ../trunk
* Project files for QtCreator:
Open the trunk/development/cmake/CMakeLists.txt file and select the build folder
Open the trunk/CMakeLists.txt file and select the build folder
or create the files in the command line using the -G"CodeBlocks *" option, eg
cmake ../trunk/development/cmake -G"CodeBlocks - Unix Makefiles"
cmake ../trunk -G"CodeBlocks - Unix Makefiles"
* Project files for Xcode
cmake ../trunk/development/cmake -GXcode
cmake ../trunk -GXcode
* Project files for Visual Studio 10
cmake ..\trunk\development\cmake -G"Visual Studio 10"
cmake ..\trunk -G"Visual Studio 10"
* NMake files for Visual Studio
cmake ..\trunk\development\cmake -G"NMake Makefiles"
cmake ..\trunk -G"NMake Makefiles"
* Makefiles for MinGW
cmake ..\trunk\development\cmake -G"MinGW Makefiles"
cmake ..\trunk -G"MinGW Makefiles"
Daily work: