增加部分基础库头文件

This commit is contained in:
2018-11-27 15:43:32 +08:00
parent 3ece9c2df0
commit c57b441070
54 changed files with 10647 additions and 1 deletions

1
example/CMakeLists.txt Normal file
View File

@@ -0,0 +1 @@
add_subdirectory(NullWindow)

View File

@@ -0,0 +1,3 @@
add_executable(NullWindow main.cpp)
target_link_libraries(NullWindow PRIVATE MathGeoLib)

View File

@@ -0,0 +1,7 @@
#include<iostream>
int main(int,char **)
{
std::cout<<"hello,world!"<<std::endl;
return 0;
}