basic project setup
This commit is contained in:
parent
c92ec0eb0e
commit
cd9f7a8bf6
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
.cache/
|
||||
compile_commands.json
|
15
.vimspector.json
Normal file
15
.vimspector.json
Normal 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
6
CMakeLists.txt
Normal 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
7
quark/CMakeLists.txt
Normal 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
8
quark/src/Test.cpp
Normal 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
5
quark/src/Test.hpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
namespace quark {
|
||||
void Print();
|
||||
}
|
7
sandbox/CMakeLists.txt
Normal file
7
sandbox/CMakeLists.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
project(sandbox)
|
||||
|
||||
add_executable(sandbox
|
||||
src/Application.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(sandbox quark)
|
5
sandbox/src/Application.cpp
Normal file
5
sandbox/src/Application.cpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include "Test.hpp"
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
quark::Print();
|
||||
}
|
Loading…
Reference in a new issue