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
207 B
Text
Raw Permalink 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
2017-11-04 14:58:23 -05:00
file(GLOB_RECURSE HEADER_CODE include/*.h)
file(GLOB_RECURSE SRC_CODE source/*.cpp)
2016-11-24 12:33:20 -06:00
2017-11-04 14:58:23 -05:00
ADD_EXECUTABLE(${CMAKE_PROJECT_NAME} ${SRC_CODE} ${HEADER_CODE})
2016-11-24 12:33:20 -06:00