This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
proceduralcity/CMakeLists.txt

11 lines
237 B
Text
Raw Normal View History

2016-11-24 12:33:20 -06:00
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
project(citygen)
2016-11-24 12:33:20 -06:00
file(GLOB_RECURSE HEADER_CODE ${citygen_SOURCE_DIR}/include/*.h)
file(GLOB_RECURSE SRC_CODE ${citygen_SOURCE_DIR}/source/*.cpp)
2016-11-24 12:33:20 -06:00
ADD_EXECUTABLE(citygen ${SRC_CODE} ${HEADER_CODE})
2016-11-24 12:33:20 -06:00