@@ -81,7 +81,6 @@ hours of use per month, which is plenty for our tutorials. A GitHub account is r
8181- <b class =" tab-title " >Using GitHub Codespaces</b >
8282[ GitHub Codespaces] ( https://github.com/codespaces ) offer a service similar to gitpod, including a free monthly quota.
8383[ Click here] ( https://codespaces.new/seqan/seqan3 ) to open SeqAn3 in Codespaces.
84- Please note that you may have to manually clone the submodules by running ` git submodule update --init ` .
8584
8685</div >
8786<br >
@@ -104,13 +103,13 @@ tutorial
104103└── seqan3
105104```
106105
107- To set these directories up you can follow this script (note the < b > \- -recurse-submodules</ b > when cloning SeqAn3) :
106+ To set these directories up you can follow this script:
108107``` bash
109108mkdir tutorial
110109cd tutorial
111110mkdir build
112111mkdir source
113- git clone --recurse-submodules https://github.com/seqan/seqan3.git
112+ git clone https://github.com/seqan/seqan3.git
114113```
115114
116115The output of the command ` tree -L 2 ` should now look like this:
@@ -230,11 +229,6 @@ target_link_libraries (my_app PUBLIC seqan3::seqan3)
230229 ```
231230 and run ` cmake ` again.
232231
233- * ** SDSL library not found** : ` The SDSL library is required, but wasn't found. ` <br >
234- The repository was not cloned correctly. This can be verified by checking whether
235- ` submodules/sdsl-lite/include/version.hpp ` exists.
236- If it does not, try running ` git submodule update --init ` within the seqan3 directory.
237-
238232* ** Incorrect compiler** : ` Your compiler is not supported. ` or ` Only GCC is supported. ` <br >
239233 The incorrect compiler is used (e.g., Apple Clang instead of GCC). Be sure to set ` -DCMAKE_CXX_COMPILER= ` . For an
240234 example, see \ref remark_cmake_cxx_compiler "this remark".
0 commit comments