Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. QBS Thirdparty
Forum Updated to NodeBB v4.3 + New Features

QBS Thirdparty

Scheduled Pinned Locked Moved Qt Creator and other tools
1 Posts 1 Posters 627 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    Babalas
    wrote on last edited by
    #1

    In cmake you can use ExternalProject_Add to extract and build third party libraries. A simple example for building curl looks like:
    @ExternalProject_Add(curl
    URL ${curl_file}
    URL_MD5 ${curl_md5}
    BUILD_IN_SOURCE 1
    CONFIGURE_COMMAND <SOURCE_DIR>/configure --prefix=<INSTALL_DIR>
    )@

    I'd like to do something similar with qbs but this is my "learn qbs" project. How would I do something like this?

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved