🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
339 B

  1. project(tinyexr)
  2. cmake_minimum_required(VERSION 2.8)
  3. set(tinyexr-Source
  4. ${CMAKE_CURRENT_SOURCE_DIR}/../tinyexr.cc
  5. ${CMAKE_CURRENT_SOURCE_DIR}/../tinyexr.h
  6. )
  7. add_library(tinyexr
  8. ${tinyexr-Source}
  9. )
  10. #Installation
  11. #install ( TARGETS
  12. # tinyexr
  13. # DESTINATION
  14. # lib
  15. # )
  16. #install ( FILES
  17. # tinyexr.h
  18. # DESTINATION
  19. # include
  20. # )