From f6f40266ba57ab2df99b897c375f85f0a8a97856 Mon Sep 17 00:00:00 2001 From: Levent Kaya Date: Wed, 5 Nov 2025 22:11:58 +0300 Subject: [feature] basic structure --- src/CMakeLists.txt | 5 +++++ src/main.cpp | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 src/CMakeLists.txt create mode 100644 src/main.cpp (limited to 'src') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..34791b0 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,5 @@ +add_library(libboltdbg INTERFACE) +target_include_directories(libboltdbg INTERFACE ${CMAKE_SOURCE_DIR}/include) + +add_executable(boltdbg main.cpp) +target_link_libraries(boltdbg PRIVATE libboltdbg) diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..7bd7cfb --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char** argv) { + std::cout << "BoltDBG (bootstrap) v0.1.0\n"; + return 0; +} -- cgit v1.2.3