restructure project for dynamic linking

This commit is contained in:
2025-02-26 12:12:31 -06:00
parent ca683b50e7
commit 1922896a1a
40 changed files with 11 additions and 0 deletions

View File

@@ -4,4 +4,5 @@ Some kind of cross platform desktop app using c++ imgui and vulkan
## Goal: ## Goal:
>- further understand the tools used to build this app >- further understand the tools used to build this app
>- highly extensible using runtime dynamic linking

View File

Before

Width:  |  Height:  |  Size: 940 KiB

After

Width:  |  Height:  |  Size: 940 KiB

9
src/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "pch.hpp"
int main(int argc, char* argv[]) {
for(int i = 0; i < argc; i++) {
std::cout << argv[i] << std::endl;
}
}

1
src/pch.hpp Normal file
View File

@@ -0,0 +1 @@
#include <iostream>