У меня есть проект 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;
}
square.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. Я долгое время писал простые программы на С ++ (хотя и с большими паузами), и это первый раз, когда я сталкиваюсь с проблемами на этом этапе. Кроме того, 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)