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 224B

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