restructure project for dynamic linking
This commit is contained in:
@@ -4,4 +4,5 @@ Some kind of cross platform desktop app using c++ imgui and vulkan
|
||||
|
||||
## Goal:
|
||||
>- further understand the tools used to build this app
|
||||
>- highly extensible using runtime dynamic linking
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 940 KiB After Width: | Height: | Size: 940 KiB |
9
src/main.cpp
Normal file
9
src/main.cpp
Normal 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
1
src/pch.hpp
Normal file
@@ -0,0 +1 @@
|
||||
#include <iostream>
|
||||
Reference in New Issue
Block a user