Initial commit
This commit is contained in:
13
src/CMakeLists.txt
Normal file
13
src/CMakeLists.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
add_executable(
|
||||
CppProject
|
||||
main.cpp
|
||||
)
|
||||
|
||||
install(
|
||||
TARGETS
|
||||
CppProject
|
||||
DESTINATION
|
||||
bin
|
||||
BUNDLE DESTINATION .
|
||||
)
|
||||
|
14
src/main.cpp
Normal file
14
src/main.cpp
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user