diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d2723d2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR) + +set(CMAKE_AUTORCC ON) + +find_package(Qt5Core) +find_package(Qt5Quick) +find_package(Qt5Sensors) +find_package(Qt5Svg) +find_package(Qt5Xml) + +add_executable(accelbubble main.cpp accelbubble.qrc) +target_link_libraries(accelbubble Qt5::Quick Qt5::Sensors Qt5::Svg Qt5::Xml)