3

当我尝试编译 Voronoi_Diagram_2 示例时,我得到以下输出:

singhg@~/Programming/examples/Voronoi_diagram_2 $ cmake -DCGAL_DIR=/opt/local/lib/cmake/
CMake Error at CMakeLists.txt:20 (include):
  include could not find load file:

    /opt/local//opt/local/lib/cmake/UseCGAL.cmake


CMake Error at CMakeLists.txt:22 (include):
  include could not find load file:

    CGAL_CreateSingleSourceCGALProgram


CMake Error at CMakeLists.txt:26 (create_single_source_cgal_program):
  Unknown CMake command "create_single_source_cgal_program".


-- Configuring incomplete, errors occurred!

请帮忙!

4

1 回答 1

3

使 CGAL3.9 在 Mac OS X 10.7.2 上运行以仅运行 CGAL 示例(此过程不会运行演示)

  • 从网站下载 src 代码
    • 将其提取到您的主目录中
    • 打开终端并转到文件夹 CGAL3.9
    • 运行 cmake-gui 。(不要忘记此命令中空格后的点)
    • 配置:上面的窗口看起来是红色的
    • 在 camke-gui 上部窗口中取消标记 CGAL-QT3 和 CGAL-QT4
    • 重新配置
    • 制作
    • 进行安装
    • 完毕!

运行演示:

  • 安装 QT4 然后在 CGAL src 代码(CGAL src 代码)中打开 Cmake-gui
    • 在 cmake-gui 上层窗口中标记 CGAL_QT4
    • 重新配置
    • 制作
    • 进行安装
    • 完毕!

点击此链接了解更多详情和疑问: http ://cgal-discuss.949826.n4.nabble.com/Compiling-a-basic-CGAL-program-in-C-on-Mac-OS-X-10-7 -2-td4166413.html

Cmake CGAL 代码的编译命令 :cmake -DCGAL_DIR=/opt/local/lib/cmake

于 2012-02-28T09:35:17.287 回答