Mercurial > hg > gpsynth
diff CMakeLists.txt @ 0:add35537fdbb tip
Initial import
author | irh <ian.r.hobson@gmail.com> |
---|---|
date | Thu, 25 Aug 2011 11:05:55 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CMakeLists.txt Thu Aug 25 11:05:55 2011 +0100 @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 2.8) + +PROJECT(gpsynth) + +set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/third_party/cmake_modules) + +set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) + +include_directories(third_party) +include_directories(src) + +add_subdirectory(third_party/json) +add_subdirectory(src)