diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/CMakeLists.txt | 5 | ||||
| -rw-r--r-- | src/main.cpp | 6 |
2 files changed, 11 insertions, 0 deletions
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 <iostream> + +int main(int argc, char** argv) { + std::cout << "BoltDBG (bootstrap) v0.1.0\n"; + return 0; +} |
