我试图使用JSCIPOpt“SCIP优化套件的Java接口(见链接[1])。按照INSTALL.md文件中的步骤,我被困在3a)这个命令行”

**cmake .. [-DCMAKE_BUILD_TYPE=<"Debug" or "Release", default: "Release">]**

我收到一条消息:
    cmake .. [-DCMAKE_BUILD_TYPE=<"Debug" or "Release", default: "Release">]
    **CMake Error:** The source directory "/home/soukaina/JSCIPOpt-master/build/Release" does not exist.
    Specify --help for usage, or press the help button on the CMake GUI.

然后我做了这个,这次我得到了一个信息:
soukaina@soukaina-Aspire-5250:~/JSCIPOpt-master$ rm -rf build
soukaina@soukaina-Aspire-5250:~/JSCIPOpt-master$ mkdir build
soukaina@soukaina-Aspire-5250:~/JSCIPOpt-master$ cd build
soukaina@soukaina-Aspire-5250:~/JSCIPOpt-master/build$ cmake ..
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Found JNI: /usr/lib/jvm/default-java/jre/lib/amd64/libjawt.so
-- Java version 1.7.0.85 configured successfully!
-- Found Java: /usr/bin/java (found version "1.7.0.85")
CMake Error at CMakeLists.txt:18 (include):
  include could not find load file:
    UseJava

-- Could NOT find SWIG (missing:  SWIG_EXECUTABLE SWIG_DIR)
found SCIP library: SCIPOPT_LIBRARIES-NOTFOUND
CMake Error at CMakeLists.txt:96 (add_jar):
  Unknown CMake command "add_jar".


CMake Error: **The following variables are used in this project, but they are set to NOTFOUND.**
Please set them or make sure they are set and tested correctly in the CMake files:
SCIPOPT_LIBRARIES
    linked by target "jscip" in directory /home/soukaina/JSCIPOpt-master

-- Configuring incomplete, errors occurred!}


>  The INSTALL.md look like :....to use/extend the Java interface, you need:
 - SCIP optimization suite
 - Java JDK
 - C compiler
 - CMake
 - SWIG (optional)

The following steps need to be done before compiling the Java interface.
1) Create a shared library of the [SCIP optimization suite](http://scip.zib.de/#download) by executing
    make SHARED=true scipoptlib
in the SCIP optimization suite directory. Afterwards, you will find the library (*.so) in the ./lib directory of the
optimization suite.

2) Create a symbolic link in JSCIPOpt to the library compiled in 1) and to the source directory of SCIP (in the
optimization suite)

    mkdir -p lib;
    cd lib;
    ln -s <SCIP source directory> scipinc
    ln -s <SCIP opt suite directory>/lib/<scip opt library> libscipopt.so

**3a)** Building JSCIPOpt on Linux.

Compile the interface by executing the following commands:

 - mkdir build
 - cd build
 **- cmake .. [-DCMAKE_BUILD_TYPE=<"Debug" or "Release", default:** "Release">]
 - make

Execute the examples via

 - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./
 - java -cp scip.jar:examples.jar <"Linear" or "Quadratic" or "Read">


  [1]: https://github.com/SCIP-Interfaces/JSCIPOpt

非常感谢您的帮助…请记住,当回答我不是一个成熟的开发人员。提前谢谢!

最佳答案

JSCIPOpt/lib目录的内容是什么样子的?是否有指向SCIP源目录的符号链接和指向libscipopt.so的另一个符号链接?你能下载并安装最新版本的Java JDK吗?
我也认为你误解了

cmake .. [-DCMAKE_BUILD_TYPE=<"Debug" or "Release", default: "Release">]

例如,在调试模式下编译JSCIPOpt需要执行以下命令:
cmake .. -DCMAKE_BUILD_TYPE=Debug

编辑:
您没有正确设置符号链接。基本上,您需要执行以下命令:
cd JSCIPOpt
mkdir lib; cd lib
ln -s /home/soukaina/scipoptsuite-4.0.0/scip-4.0.0/src scipinc
ln -s /home/soukaina/scipoptsuite-4.0.0/lib/libscipopt.so libscipopt.so
cd ..
mkdir build; cd build
cmake ..
make

10-06 09:24