diff options
-rw-r--r-- | CMakeLists.txt | 8 | ||||
-rw-r--r-- | cmake/README.txt | 15 |
2 files changed, 20 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 13ff8a59..a67ed2a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -270,5 +270,9 @@ set (GAWK_SOURCES ${GAWK_SOURCES} add_executable (gawk ${GAWK_SOURCES}) target_link_libraries (gawk m ${EXTRA_LIBS}) -add_subdirectory(test) -add_subdirectory(doc) +if(${CMAKE_CROSSCOMPILING} STREQUAL "TRUE") +else() + add_subdirectory(test) + add_subdirectory(doc) +endif() + diff --git a/cmake/README.txt b/cmake/README.txt index aae024c6..d6e693b8 100644 --- a/cmake/README.txt +++ b/cmake/README.txt @@ -19,7 +19,20 @@ should do this, read ./gawk --version Notice that this git-checkout allows you to read the source code, track the cmake branch and get updates. You will not be able to -commit anything. http://savannah.gnu.org/maintenance/UsingGit +commit anything. + +- How can I use git to contribute source code ? +You need an account at Savannah. Read this to understand the first steps: + http://savannah.gnu.org/maintenance/UsingGit + README.git +Use your account there to register your public ssh key at Savannah. +Then you are ready to checkout. Remember that (when cloning) you are +setting up your own local repository and make sure you configure it +properly. + git clone ssh://my_account_name@git.sv.gnu.org/srv/git/gawk.git + git config --global user.name "first-name last-name" + git config --global user.email First.Last@email.com + git config --global color.ui auto - What is the current status of the cmake branch ? It has just begun, pre-alpha, unclear if it will ever be taken up |