Skip to content

Commit 15ba97b

Browse files
committed
Correct Ubuntu 22.04 build
1 parent 62b6fe7 commit 15ba97b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
110110
set(CMAKE_AUTOMOC ON)
111111
find_package(Qt6 REQUIRED COMPONENTS Core Network)
112112
set(Qt6_LIBRARIES Qt6::Core Qt6::Network )
113-
qt_standard_project_setup()
114113
message("Found Qt6 ${Qt6Core_VERSION}")
115114

116115
message("\n\n\n{Qt6_LIBRARIES}=${Qt6_LIBRARIES} ")

Dockerfile-ubuntu22.04

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ ENV DEBIAN_FRONTEND=noninteractive
55
# Setup
66
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
77
RUN mkdir -p /src/
8-
RUN git clone https://github.com/aymara/qhttpserver /src/qhttpserver
8+
COPY . /src/qhttpserver
9+
#RUN git clone https://github.com/aymara/qhttpserver /src/qhttpserver
910

1011
RUN mkdir -p /src/qhttpserver/build
1112

0 commit comments

Comments
 (0)