DEbug issue: no executable file

Sysprogs forums Forums VisualGDB DEbug issue: no executable file

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #10287
    amigo421
    Participant

    what does it mean – no executable file specified. use exec or exec-file command?

    I see the executable built successfully. upload is not required as I’m in WSL, and refers to the same folder from Win10 as well as from WSL.

    the project was created as an import of CMake based project.

    #10289
    amigo421
    Participant

    seems visualgdb interprets cmake oddly (incorrect?).

    cmake_minimum_required (VERSION 3.5)

    project(my_project)


    add_executable(my_project main.cpp src/handler.cpp)

    target_link_libraries(my_project pthread boost_system crypto ssl cpprest swe “${LIBRARIES_FROM_REFERENCES}”)

    the case above works fine.

    however (more correct for cmake , from my perspective) doesn’t work with error from the initial post

    cmake_minimum_required (VERSION 3.5)

    project(my_project)


    add_executable(${PROJECT_NAME} main.cpp src/handler.cpp)

    target_link_libraries(${PROJECT_NAME} pthread boost_system crypto ssl cpprest swe “${LIBRARIES_FROM_REFERENCES}”)

    #10296
    support
    Keymaster

    Hi,

    Thanks for reporting this, please try this build: http://sysprogs.com/files/tmp/VisualGDB-5.2.14.1375.msi

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.