Open Source Tomb Raider Engine
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.

CMakeLists.txt 271B

12345678910
  1. # Source files
  2. set (UTIL_SRCS ${UTIL_SRCS} "strings.cpp")
  3. set (UTIL_SRCS ${UTIL_SRCS} "tga.cpp")
  4. set (UTIL_SRCS ${UTIL_SRCS} "time.cpp")
  5. # Include directory
  6. include_directories ("${PROJECT_SOURCE_DIR}/include")
  7. # Add library
  8. add_library (OpenRaider_utils ${UTIL_SRCS})