CMakeLists.txt 409 B

12345678910111213141516171819202122
  1. # Copyright (c) 2008-2023 the Urho3D project
  2. # License: MIT
  3. if (NOT URHO3D_NETWORK)
  4. return ()
  5. endif ()
  6. # Define target name
  7. set (TARGET_NAME 43_HttpRequestDemo)
  8. if (URHO3D_SSL)
  9. add_definitions (-DURHO3D_SSL)
  10. endif ()
  11. # Define source files
  12. define_source_files (EXTRA_H_FILES ${COMMON_SAMPLE_H_FILES})
  13. # Setup target with resource copying
  14. setup_main_executable ()
  15. # Setup test cases
  16. setup_test ()