Skip to content
Snippets Groups Projects
  1. Nov 28, 2024
  2. Sep 26, 2024
  3. Aug 02, 2024
  4. Nov 16, 2023
  5. Nov 15, 2023
  6. Sep 27, 2023
  7. Sep 04, 2023
  8. Jun 21, 2023
  9. Jun 20, 2023
  10. Apr 27, 2023
  11. Apr 12, 2023
  12. Mar 27, 2023
  13. Aug 09, 2022
  14. Feb 04, 2022
  15. Jan 06, 2022
  16. Jan 05, 2022
  17. Jan 04, 2022
  18. Jan 03, 2022
  19. Dec 16, 2021
  20. Nov 23, 2021
  21. Nov 11, 2021
  22. Nov 09, 2021
  23. Sep 29, 2021
  24. Sep 15, 2021
    • Pascal Palenda's avatar
      Adapt to previous commit · 4fb2776d
      Pascal Palenda authored
      First, use the CMAKE_RUNTIME_OUTPUT_DIRECTORY variable to get the configuration dependant output folder.
      However, configure_file does not support generator expressions.
      Thus switch to file(GENERATE).
      4fb2776d
    • Pascal Palenda's avatar
      Adapt the output folders to handle multi config generators · 9c41a8b3
      Pascal Palenda authored
      The Visual studio generator is a multi config generator.
      This means, that form one project, e.g debug and release can be build.
      This caused issues, as the default behaviour is to append the configuration type to the output directory.
      Thus, dlls and required files were not copied to the right locations.
      
      By adding the generator expression '$<Config>' to the CMAKE_RUNTIME_OUTPUT_DIRECTORY path,
      the default appending behaviour is supressed and every configuration uses its own output folder.
      The dlls and required files can then be copied in the correct folder for each configuration.
      9c41a8b3
Loading