aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Kahrs <Juergen.Kahrs@googlemail.com>2013-02-08 13:50:41 +0100
committerJuergen Kahrs <Juergen.Kahrs@googlemail.com>2013-02-08 13:50:41 +0100
commitfa30c4248c55cbce828bd9f31f5d45ca842464b3 (patch)
treec4ac9dcba6879380d448b8df27ef4aa928e3db15
parentac9bad12d159288eeaf704da3aeed63a859339cf (diff)
downloadegawk-fa30c4248c55cbce828bd9f31f5d45ca842464b3.tar.gz
egawk-fa30c4248c55cbce828bd9f31f5d45ca842464b3.tar.bz2
egawk-fa30c4248c55cbce828bd9f31f5d45ca842464b3.zip
Added some more hints about what to do.
-rw-r--r--CMakeLists.txt8
-rw-r--r--cmake/README.txt15
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