How to Create, Compile, And Run a single file in CLion

前端 未结 6 470
情话喂你
情话喂你 2021-01-31 03:07

I am working on some c++ stuff and I hate having to create a whole new project just to run a few things on a file.

I also don\'t like how when you creat

相关标签:
6条回答
  • 2021-01-31 03:41

    CLion is based on CMake. So if you want to not use CMake, you can use other editors like Sublime Text.

    But a simple CMake script could solve the problem.

    The following CMake script automatically adds cpp files in the current directory and its subdirectories to executables (filename as the target name).

    cmake_minimum_required(VERSION 3.15)
    project(MyApp)
    
    set(CMAKE_CXX_STANDARD 17)
    
    file(GLOB APP_SOURCES *.cpp */*.cpp)
    foreach (testsourcefile ${APP_SOURCES})
        get_filename_component(testname ${testsourcefile} NAME_WE)
        message("${testname}")
        add_executable(${testname} ${testsourcefile})
    endforeach (testsourcefile ${APP_SOURCES})
    
    0 讨论(0)
  • 2021-01-31 03:45

    You may modify the CMakeLists.txt

    Here an example :

    cmake_minimum_required(VERSION 3.3)
    project(test_build)
    
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
    
    set(BUILD_1 main)
    set(SOURCE_FILES_1 main.cc) //where main.cc is your first main/program
    add_executable(${BUILD_1} ${SOURCE_FILES_1})
    
    set(BUILD_2 main_2)
    set(SOURCE_FILES_2 main_2.cc) //where main_2.cc is your second main/program
    add_executable(${BUILD_2} ${SOURCE_FILES_2})
    

    Or use a test (garbage version) :
    add_executable(foo bar.cc)

    After that you can choose the build you want in CLion

    0 讨论(0)
  • 2021-01-31 03:45

    For a portable solution across IDE's, I call a scratch() function at the start of my main() and put exit(0); at the end of the scratch function.

    Inside scratch(), you can call something in a different file if you want. I usually just test snippets in there.

    0 讨论(0)
  • 2021-01-31 03:52

    I just had the same question and stumbled upon this thread and then found my solution in this plugin. What this plugin does is basically what user Waxo suggested automatically: adds a single line in CMakeLists.txt for each executable file for you. You just have to right click in editor and select it. I found it pretty useful and use it mostly for algorithms competitions. Hope this helps: https://plugins.jetbrains.com/plugin/8352-c-c--single-file-execution

    Cheers!

    0 讨论(0)
  • 2021-01-31 03:54

    Inside every CLion project there is a file CMakeLists.txt.
    To run a single file you will have to write a single command inside this file and that is:

    add_executable(file_name_without_extension_cpp  file_name_with_extension_cpp)
    

    For example: add_executable(CoinChange CoinChange.cpp)

    Then click reload changes and then go to run option and then select the file you want to run then hit the run button. Your single file will be run.

    How many single files will be in your CLion project you will have to perform this same action for running every single file.

    0 讨论(0)
  • 2021-01-31 03:57
    1. install plugin inside CLion "C/C+​+​ Single File Execution"
    2. go to that file that you want to execute and right click then select last option i.e. add single executable single c/cpp file
    3. go to run option or press Alt + shift + f10 and select file that you want to run
    0 讨论(0)
提交回复
热议问题