diff --git a/CMakeLists.txt b/CMakeLists.txt index b2f4d0a..7753e0a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,7 +110,6 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) find_package(Qt6 REQUIRED COMPONENTS Core Network) set(Qt6_LIBRARIES Qt6::Core Qt6::Network ) -qt_standard_project_setup() message("Found Qt6 ${Qt6Core_VERSION}") message("\n\n\n{Qt6_LIBRARIES}=${Qt6_LIBRARIES} ") diff --git a/Dockerfile-ubuntu22.04 b/Dockerfile-ubuntu22.04 index 583ca6c..5f22f15 100644 --- a/Dockerfile-ubuntu22.04 +++ b/Dockerfile-ubuntu22.04 @@ -5,7 +5,8 @@ ENV DEBIAN_FRONTEND=noninteractive # Setup RUN apt-get update -y -qq && apt-get install -y apt-utils wget bzip2 git gcc g++ cmake cmake-data ninja-build qt6-base-dev-tools qt6-declarative-dev packaging-dev -qq RUN mkdir -p /src/ -RUN git clone https://github.com/aymara/qhttpserver /src/qhttpserver +COPY . /src/qhttpserver +#RUN git clone https://github.com/aymara/qhttpserver /src/qhttpserver RUN mkdir -p /src/qhttpserver/build