diff options
Diffstat (limited to '')
-rw-r--r-- | README.autotools | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/README.autotools b/README.autotools index 4b83a222..a67c1c8d 100644 --- a/README.autotools +++ b/README.autotools @@ -1,8 +1,13 @@ Where are the ./configure script and the Makefile's? Configure and Make scripts are not included in the git source tree. They are -automatically generated by the SConstruct script. +automatically generated by the CMake script. -Just type "scons autotools" to generate everything needed for the traditional -./configure, make, make install build process. +Just use the following instruction to generate everything needed for the +traditional "make" and "make install" build process. + + cmake -G "Unix Makefiles" + +Please note that "configure" script is not needed anymore, as platform +checks are now done by CMake. |