Initial CMake project structure

This commit is contained in:
jun
2023-07-23 20:19:46 -03:00
parent c4dcfadc90
commit d9e07ab79c
7 changed files with 128 additions and 0 deletions

17
src/main.cpp Normal file
View File

@@ -0,0 +1,17 @@
/**
* @file main.cpp
* @author jun <jun@firmwarejun.net>
* @brief Main entry of the program
* @version 0.1
* @date 2023-07-23
*
* Copyright (c) 2023 jun <https://git.firmwarejun.net/jun/MolecularDynamics2>
*
*/
#include <iostream>
int main() {
std::cout << "kk eae men" << std::endl;
return 0;
}