diff options
author | Josh Blum <josh@joshknows.com> | 2010-04-18 00:37:24 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-04-18 00:37:24 -0700 |
commit | 77c578fc639bb3d54c6730402de04a22636b1d6d (patch) | |
tree | b20154e5337ff498c831a2472f834bb3087f85e9 /host/README | |
parent | 1ee33acace699a5374d605c71dbe4075b85aecc9 (diff) | |
download | uhd-77c578fc639bb3d54c6730402de04a22636b1d6d.tar.gz uhd-77c578fc639bb3d54c6730402de04a22636b1d6d.tar.bz2 uhd-77c578fc639bb3d54c6730402de04a22636b1d6d.zip |
Created a docs directory to house restructured text documentation.
Moved doxygen build rules into the docs build directory.
Created rst docs for building and burning usrp2.
Diffstat (limited to 'host/README')
-rw-r--r-- | host/README | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/host/README b/host/README index 5648a7c66..558cf0e4a 100644 --- a/host/README +++ b/host/README @@ -16,87 +16,3 @@ Basic TX LF RX LF TX RFX Series - -######################################################################## -# Dependencies -######################################################################## -Unix Notes: - These dependencies can be acquired through the package manager. -Windows Notes: - These dependencies can be acquired through installable exe files. - Usually, the windows installer can be found on the project's website. - Some projects do not host windows installers, and if this is the case, - follow the auxiliary download url for the windows installer (below). - -Git: - Required to check out the repository (not needed for source downloads). - On windows, install cygwin with git support to checkout the repository, - or install msysgit from http://code.google.com/p/msysgit/downloads/list - -C++: - On unix, this is GCC 4.0 and above. On windows, this is MSVC 2008. - Other compilers have not been tested yet or confirmed working. - -CMake: - Version: at least 2.8 - Required for: build time - Download URL: http://www.cmake.org/cmake/resources/software.html - -Boost: - Version: at least 3.6 unix, at least 4.0 windows - Required for: build time + run time - Download URL: http://www.boost.org/users/download/ - Download URL (windows installer): http://www.boostpro.com/download - -Python: - Version: at least 2.6 - Required for: build time - Download URL: http://www.python.org/download/ - -Cheetah: - Version: at least 2.0 - Required for: build time - Download URL: http://www.cheetahtemplate.org/download.html - Download URL (windows installer): http://feisley.com/python/cheetah/ - -Doxygen: - Required for: build time (optional) - Download URL: http://www.stack.nl/~dimitri/doxygen/download.html#latestsrc - -######################################################################## -# Build Instructions (unix) -######################################################################## -cd <uhd-repo-path>/host -mkdir build -cd build -cmake ../ -make -make test -sudo make install - -For a custom prefix, use: cmake -DCMAKE_INSTALL_PREFIX=<myprefix> ../ - -######################################################################## -# Build Instructions (windows) -######################################################################## - -##### Generate the project with cmake ##### -Open the cmake gui program. -Set the path to the source code: <uhd-repo-path>/host -Set the path to the build directory: <uhd-repo-path>/host/build -Make sure that the paths do not contain spaces. -Click configure and select the MSVC compiler. -Set the build variables and click configure again. -Click generate and a project file will be created in the build directory. - -##### Build the project in MSVC ##### -Open the generated project file in MSVC. -Select the build all target, right click, and choose build. -Select the install target, right click, and choose build. - Note: you may not have permission to build the install target. - You need to be an administrator or to run MSVC as administrator. - -##### Setup the PATH environment variable ##### -Add the boost library path and uhd library path to your %PATH%. -Usually c:\program files\boost\<version>\lib and c:\program files\uhd\lib - |