gpt4 book ai didi

CMake - Code::Blocks - Hello World - 基本示例

转载 作者:行者123 更新时间:2023-12-04 07:07:29 24 4
gpt4 key购买 nike

在哪里可以找到生成要在 CMake 中加载的简单 CMake Hello World 项目的指南?
平台:联想32位Linux Kubuntu
1)我将使用 git repo:

./git/CMakeLists.txt
./git/code/CMakeLists.txt
./git/code/hello-world.c
文件包含明显内容的地方
2)我会运行cmake
- pointing the source to the git repo indicated in 1
- configuring the repo
- generating the code-blocs-project (cbp) file in ./build
3)所以我可以简单地点击
- the cbp link in ./build
- compile the project in c::b and run a
- very basic console program spitting out, you guessed it: "Hello stack overflowers!"

最佳答案

所以,只是为了确认文件的明显内容;这是我所拥有的:

~/devel/example $ tree .
.
├── build
└── git
├── CMakeLists.txt
└── code
├── CMakeLists.txt
└── hello-world.c

3 directories, 3 files

~/devel/example $ cat git/CMakeLists.txt
cmake_minimum_required(VERSION 3.0)
project(Hello)
add_subdirectory(code)

~/devel/example $ cat git/code/CMakeLists.txt
add_executable(hello hello-world.c)

~/devel/example $ cat git/code/hello-world.c
#include <stdio.h>

int main() {
printf("Hello stack overflowers!\n");
return 0;
}

现在,为了运行 CMake,我做了:
~/devel/example $ cd build/
~/devel/example/build $ cmake ../git -G"CodeBlocks - Unix Makefiles"
-- The C compiler identification is GNU 4.9.2
-- The CXX compiler identification is GNU 4.9.2
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - 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
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/fraser/devel/example/build
~/devel/example/build $ ls
CMakeCache.txt CMakeFiles cmake_install.cmake code Hello.cbp Makefile

您可以看到生成了一个 CodeBlocks 项目文件 ( Hello.cbp )

如果你现在在 CodeBlocks 中打开这个项目(双击项目文件),你应该看到项目 Hello在左侧 Pane 中。

默认情况下,选择“所有”目标。它应该出现在 GUI 顶部编译器工具栏中的下拉框中。这会构建项目中指定的所有目标,但不是您可以运行的 - 您只能构建它。

可执行目标的名称是“hello”,如 CMake 代码中指定的 add_executable(hello hello-world.c) .要运行可执行文件,请从前面提到的下拉框中选择“hello”,然后点击同一工具栏中的“Build and run”图标。

关于CMake - Code::Blocks - Hello World - 基本示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29399512/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com