xmake.lua 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package("workflow")
  2. set_homepage("https://github.com/sogou/workflow")
  3. set_description("C++ Parallel Computing and Asynchronous Networking Framework")
  4. set_license("Apache-2.0")
  5. add_urls("https://github.com/sogou/workflow/archive/refs/tags/$(version).tar.gz",
  6. "https://github.com/sogou/workflow.git")
  7. add_versions("v0.10.6", "5701ef31518a7927e61b26cd6cc1d699cb43393bf1ffc77fa61e73e64d2dd28e")
  8. add_versions("v0.10.7", "aa9806983f32174597549db4a129e2ee8a3d1f005923fcbb924906bc70c0e123")
  9. add_versions("v0.10.8", "bb5654e8011822d4251a7a433cbe4c5ecfd2c65c8f997a8196685742d24bcaf0")
  10. add_versions("v0.10.9", "10f695aeb5da87ae138e3bcd2fa10c18aac782b0da20f11b2fd0b7b091d06767")
  11. add_versions("v0.11.1", "06968ed4e43f6676811b620d09eb5c32ac57252305e7e28def6efde8ef1ceb19")
  12. add_versions("v0.11.2", "cc2d18ab2b292e2f0163ef67ef6976912e2a21c271396da0e2151ca8cd22abd3")
  13. add_versions("v0.11.3", "af7adcdd8151f8e72247599a43c28aa849d61ed39e58058cfa80649d011575bc")
  14. add_versions("v0.11.4", "844fd03db120141fa61600b26a4ef35716dc0e75d1e8c8018078eb385cf746a4")
  15. add_deps("openssl")
  16. if is_plat("linux") then
  17. add_syslinks("pthread", "dl")
  18. end
  19. on_install("linux", "macosx", "android", function (package)
  20. local configs = {}
  21. if package:config("shared") then
  22. configs.kind = "shared"
  23. end
  24. import("package.tools.xmake").install(package, configs)
  25. end)
  26. on_test(function (package)
  27. assert(package:check_cxxsnippets({test = [[
  28. #include <stdio.h>
  29. #include "workflow/WFHttpServer.h"
  30. void test() {
  31. WFHttpServer server([](WFHttpTask *task) {
  32. task->get_resp()->append_output_body("<html>Hello World!</html>");
  33. });
  34. if (server.start(8888) == 0) { // start server on port 8888
  35. server.stop();
  36. }
  37. }
  38. ]]}, {configs = {languages = "c++11"}}))
  39. end)