Simple cmake example with working ccls

This commit is contained in:
2025-02-04 13:44:55 +01:00
commit 89361cc735
6 changed files with 56 additions and 0 deletions

11
include/HelloWorld.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef HELLOWORLD_H
#define HELLOWORLD_H
#include <string>
class HelloWorld {
public:
void printMessage(const std::string &message);
};
#endif // HELLOWORLD_H