增加部分基础库头文件
This commit is contained in:
1
example/CMakeLists.txt
Normal file
1
example/CMakeLists.txt
Normal file
@@ -0,0 +1 @@
|
||||
add_subdirectory(NullWindow)
|
3
example/NullWindow/CMakeLists.txt
Normal file
3
example/NullWindow/CMakeLists.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
add_executable(NullWindow main.cpp)
|
||||
|
||||
target_link_libraries(NullWindow PRIVATE MathGeoLib)
|
7
example/NullWindow/main.cpp
Normal file
7
example/NullWindow/main.cpp
Normal file
@@ -0,0 +1,7 @@
|
||||
#include<iostream>
|
||||
|
||||
int main(int,char **)
|
||||
{
|
||||
std::cout<<"hello,world!"<<std::endl;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user