CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Threaded View

  1. #1
    Join Date
    Dec 2010
    Posts
    907

    Attach Blender Source Code to Netbeans?

    Hi,
    The Blender project is properly configurated by CMake and I ran the makefile as well
    which was successful. But Now I want to attach it to Netbeans so that I can
    have some GUI debugger to work with.

    I use
    1) New application from existing source
    2) I select the root directory of the build say
    C:\Blender\Source
    C:\Blender\Lib
    C:\Blender\blenderbuild
    I point it to the third option.
    next, I chose Custom Configuration Mode
    I use an existing Makefile as it works correctly before
    Working Directory I chose C:\Blender\blenderbuild
    Source Folder I also chose C:\Blender\blenderbuild cos it contains some interns and libs and stuff
    Code Assistance I used Automatic
    Project Name I chose BlenderSVN
    Project Location: C:\Blender
    Project Folder: C:\Blender\BlenderSVN

    And this error occurs
    Makefile:142: recipe for target `all' failed
    process_begin: CreateProcess(NULL, /C/mingw64/bin/make.exe -f CMakeFiles\Makefile2 all, ...) failed.
    make (e=2): System can not find the file specified。

    make: *** [all] Error 2


    BUILD FAILED (exit value 2, total time: 715ms)
    I double check on
    C:\Blender\blenderbuild\CMakeFiles\Makefile2 does exist
    In line 142, it contains
    # The main all target
    all: cmake_check_build_system
    $(CMAKE_COMMAND) -E cmake_progress_start C:\Blender\blenderbuild\CMakeFiles C:\Blender\blenderbuild\CMakeFiles\progress.marks
    $(MAKE) -f CMakeFiles\Makefile2 all
    $(CMAKE_COMMAND) -E cmake_progress_start C:\Blender\blenderbuild\CMakeFiles 0
    .PHONY : all

    What other possibilities of compilation bugs are there?
    Thanks
    Jack
    Last edited by lucky6969b; February 21st, 2014 at 02:59 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured