Move xml tools to uptr, start adding test setup.

This commit is contained in:
jmsgrogan 2020-06-07 18:11:36 +01:00
parent 8771b721d1
commit e0eccba62f
14 changed files with 44 additions and 9 deletions

6
test/CMakeLists.txt Normal file
View file

@ -0,0 +1,6 @@
add_executable(test_runner test_runner.cpp)
target_include_directories(test_runner PUBLIC
"${PROJECT_SOURCE_DIR}/test/"
)
target_link_libraries(test_runner PUBLIC core
network database geometry audio graphics web)

4
test/test_runner.cpp Normal file
View file

@ -0,0 +1,4 @@
int main()
{
return 0;
}