File: CMakeLists.txt

package info (click to toggle)
qhttpengine 0.1.0%2Bdfsg1-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 524 kB
  • sloc: cpp: 2,070; javascript: 39; makefile: 21
file content (10 lines) | stat: -rw-r--r-- 175 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
set(SRC
    main.cpp
)

add_executable(fileserver ${SRC})
target_link_libraries(fileserver QHttpEngine)

install(TARGETS fileserver
    RUNTIME DESTINATION "${EXAMPLE_DIR}"
)