在Visual Studio 2019上使用CMake编译错误LNK2019

时间:2019-05-28 19:20:23

标签: c++ visual-studio cmake

晚上好!

我只是开始使用Visual Studio 2019在新的CMake项目中使用C ++,作为示例。我编写了一个名为“ TestClass”的新类。但是我无法编译,我不知道问题出在哪里,因为我认为没有C ++语法错误。

TestClass.cpp

#include "TestClass.h"

TestClass::Hallo()
{

}

TestClass.h

#pragma once

class TestClass
{
public:
  void Hallo();
};

Main.cpp

#include "TestClass.h"

int main()
{ 
  TestClass testingM;
  testingM.Hallo();
}

enter image description here

Download sample Project

有什么主意吗?谢谢!

0 个答案:

没有答案