求大牛帮忙看一下配置的办法,该怎么处理

求大牛帮忙看一下配置的办法
This project is using the CMake build system.
-----------------------
CMake is a complete stand-alone platform-independent build-system 
replacing autoconf/autoheader/automake/etc. completely. 
It depends just on installed cmake (tested with version 2.2, 2.4 and 2.6)
See www.cmake.org for details.
-----------------------

USAGE: 
=====

1. install Cmake 2.42 (or newer) from www.cmake.org
   alternatively an rpm is available in /data/software/linux/develop/CMake/
   Note: Cmake 2.43 does NOT work due to .hh issues.
2. check out our additional CMake modules from CVS repository "CMakeModules"
   'cvs -d :pserver:<user name>@nil.mip.informatik.uni-kiel.de:/home/cvs/bias CMakeModules`
3. set the environment variable CMAKE_MODULE_PATH to point to the above 
   directory. 
   `export CMAKE_MODULE_PATH=~/cvs/CMakeModules`
4. check out BIAS source code
   `cvs -d :pserver:<user name>@nil.mip.informatik.uni-kiel.de:/home/cvs/bias BIAS`

   For building you have got the option of "in-place" or "out-of-place" builds.

------解决方案--------------------
学习下cvs

------解决方案--------------------
很多配置CVS的文章,随便找一个看看。
------解决方案--------------------
2.使用CVS检出CMake模块;
3.设置环境变量(貌似这是类UNIX/LINUX系统的设置方式);
4.使用CVS检出BIAS源代码。
------解决方案--------------------
不是要CVS支持,CVS是管理源代码的工具……现在大多使用SVN或者GIT了。

求大牛帮忙看一下配置的办法,该怎么处理求大牛帮忙看一下配置的办法,该怎么处理求大牛帮忙看一下配置的办法,该怎么处理


引用:
Quote: 引用:

2.使用CVS检出CMake模块;
3.设置环境变量(貌似这是类UNIX/LINUX系统的设置方式);
4.使用CVS检出BIAS源代码。



This project is using the CMake build system.
-----------------------
CMake is a complete stand-alone platform-independent build-system 
replacing autoconf/autoheader/automake/etc. completely. 
It depends just on installed cmake (tested with version 2.2, 2.4 and 2.6)
See www.cmake.org for details.
-----------------------

USAGE: 
=====

1. install Cmake 2.42 (or newer) from www.cmake.org
   alternatively an rpm is available in /data/software/linux/develop/CMake/
   Note: Cmake 2.43 does NOT work due to .hh issues.
2. check out our additional CMake modules from CVS repository "CMakeModules"
   'cvs -d :pserver:<user name>@nil.mip.informatik.uni-kiel.de:/home/cvs/bias CMakeModules`
3. set the environment variable CMAKE_MODULE_PATH to point to the above 
   directory. 
   `export CMAKE_MODULE_PATH=~/cvs/CMakeModules`
4. check out BIAS source code
   `cvs -d :pserver:<user name>@nil.mip.informatik.uni-kiel.de:/home/cvs/bias BIAS`

   For building you have got the option of "in-place" or "out-of-place" builds.

--- Linux ---
5.1 In-place example:
  cd <source dir>;  
  ccmake .  
    or for defaults:  cmake .
  make 

5.2 Or out-of-place builds 
    (very useful for different parallel build configurations: 
  mkdir <build dir>
  cd <build dir>
  ccmake <source dir>   
    or for defaults:  cmake <source dir>
  make

--- WIN32 ---
use cmake or CMakeSetupGui or run the configure.bat for default in-place build.
Set environment variables and proceed as described for Linux



Important Files:
===============

- CMakeLists.txt:
    overall configuration file

- BIASBuildSettings.cmake: