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
2017-11-04 14:58:23 -05:00

10 lines
207 B
CMake

CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
project(citygen)
file(GLOB_RECURSE HEADER_CODE include/*.h)
file(GLOB_RECURSE SRC_CODE source/*.cpp)
ADD_EXECUTABLE(${CMAKE_PROJECT_NAME} ${SRC_CODE} ${HEADER_CODE})