Initial commit

This commit is contained in:
2023-08-08 20:21:43 -05:00
commit 629383e2e2
15 changed files with 1062 additions and 0 deletions

13
src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
add_executable(
CppProject
main.cpp
)
install(
TARGETS
CppProject
DESTINATION
bin
BUNDLE DESTINATION .
)

14
src/main.cpp Normal file
View File

@@ -0,0 +1,14 @@
/*
* Copyright 2022 - 2023 gary@drinkingtea.net
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <cstdio>
int main(int, char**) {
printf("C++ project.\n");
return 0;
}