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

cmake_minimum_required(VERSION 3.22)
project(ProtocolDeveloppement)
set(CMAKE_CXX_STANDARD 14)
#set(CMAKE_PREFIX_PATH "/Qt/6.5.0/android_arm64_v8a/lib/cmake")
#set(CMAKE_PREFIX_PATH "D:/programme/Qt/6.5.0/mingw_64/lib/cmake")
find_package(Qt6Widgets REQUIRED)
find_package(Qt6Network REQUIRED)
find_package(Qt6Gui REQUIRED)
add_executable(${PROJECT_NAME}
main.cpp
stompframe.cpp
stomp.cpp
app.cpp
Vector2D.cpp
)
link_directories( ${PCL_LIBRARY_DIRS} )
target_link_libraries(${PROJECT_NAME}
Qt6::Network
Qt6::Gui
Qt6::Widgets
)