This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
SDi-STOMP/CMakeLists.txt

29 lines
598 B
CMake
Raw Permalink Normal View History

2023-11-29 07:32:55 +00:00
cmake_minimum_required(VERSION 3.22)
project(ProtocolDeveloppement)
set(CMAKE_CXX_STANDARD 14)
2023-12-26 21:09:42 +00:00
#set(CMAKE_PREFIX_PATH "/Qt/6.5.0/android_arm64_v8a/lib/cmake")
2023-12-28 13:57:13 +00:00
#set(CMAKE_PREFIX_PATH "D:/programme/Qt/6.5.0/mingw_64/lib/cmake")
2023-11-29 07:32:55 +00:00
find_package(Qt6Widgets REQUIRED)
find_package(Qt6Network REQUIRED)
find_package(Qt6Gui REQUIRED)
add_executable(${PROJECT_NAME}
main.cpp
stompframe.cpp
2023-12-26 21:09:42 +00:00
stomp.cpp
app.cpp
2023-12-28 13:57:13 +00:00
Vector2D.cpp
2023-11-29 07:32:55 +00:00
)
link_directories( ${PCL_LIBRARY_DIRS} )
target_link_libraries(${PROJECT_NAME}
Qt6::Network
Qt6::Gui
Qt6::Widgets
)