basic project setup

This commit is contained in:
lauchmelder 2025-01-03 10:21:31 +01:00
parent c92ec0eb0e
commit cd9f7a8bf6
8 changed files with 55 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.cache/
compile_commands.json

15
.vimspector.json Normal file
View file

@ -0,0 +1,15 @@
{
"configurations": {
"Debug Sandbox": {
"adapter": "vscode-cpptools",
"configuration": {
"type": "cppdbg",
"request": "launch",
"program": "${outputDir}/sandbox/sandbox",
"cwd": "${outputDir}/sandbox",
"externalConsole": true,
"MIMode": "gdb"
}
}
}
}

6
CMakeLists.txt Normal file
View file

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.14)
project(quark)
add_subdirectory(quark)
add_subdirectory(sandbox)

7
quark/CMakeLists.txt Normal file
View file

@ -0,0 +1,7 @@
project(quark CXX)
add_library(quark SHARED
src/Test.cpp
)
target_include_directories(quark INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/src)

8
quark/src/Test.cpp Normal file
View file

@ -0,0 +1,8 @@
#include "Test.hpp"
#include <cstdio>
namespace quark {
void Print() {
printf("Hello, quark!\n");
}
}

5
quark/src/Test.hpp Normal file
View file

@ -0,0 +1,5 @@
#pragma once
namespace quark {
void Print();
}

7
sandbox/CMakeLists.txt Normal file
View file

@ -0,0 +1,7 @@
project(sandbox)
add_executable(sandbox
src/Application.cpp
)
target_link_libraries(sandbox quark)

View file

@ -0,0 +1,5 @@
#include "Test.hpp"
int main(int argc, char** argv) {
quark::Print();
}