无法在 CLion 中构建 C++ 项目

Can't build c++ project in CLion

本文关键字:构建 C++ 项目 CLion      更新时间:2023-10-16

我有一个hello-wrold项目:
main.cpp:

#include <iostream>
#include "square.h"
int main() {
int z = 5;
std::cout << square(z) << std::endl;
return 0;
}

square.cpp:

int square(int x)
{
return x * x;
}

平方h:

#ifndef SQUARE_H
#define SQUARE_H
int square(int x);
#endif //SQUARE_H

它使用来自终端的g++编译和运行:

g++ -c main.cpp
g++ -c square.cpp
g++ main.o square.o -o programm
./programm
>25

但CLion的构建最终是:

[ 50%] Linking CXX executable cpp_code
Undefined symbols for architecture x86_64:
"square(int)", referenced from:
_main in main.cpp.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[3]: *** [cpp_code] Error 1
make[2]: *** [CMakeFiles/cpp_code.dir/all] Error 2
make[1]: *** [CMakeFiles/cpp_code.dir/rule] Error 2
make: *** [cpp_code] Error 2

p.S.我曾经写过很长一段时间的简单c++程序(尽管有很大的停顿(,这是我第一次在这一步遇到问题。此外,还有一个自动创建的CMakeList.txt(在VisStud中没有类似的!(CMakeList.txt:

cmake_minimum_required(VERSION 3.12)
project(cpp_code)
set(CMAKE_CXX_STANDARD 14)
add_executable(cpp_code main.cpp)

add_executable期望创建所述可执行文件所需编译的文件列表。将square.cpp添加到该列表中。

add_executable(cpp_code main.cpp square.cpp)