First work on Kraken! Basic node tree system re-written from WTS-Language, can output .gv files of the node tree.

This commit is contained in:
Nathan Braswell
2013-05-11 16:13:46 -04:00
parent ced3f3ea37
commit 46d59ac595
5 changed files with 186 additions and 1 deletions

12
CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
cmake_minimum_required (VERSION 2.6)
project(Kraken)
set( MY_INCLUDES ${PROJECT_SOURCE_DIR}/include)
set( MY_SOURCES main.cpp src/NodeTree.cpp )
include_directories( ${MY_INCLUDES} )
add_executable(kraken ${MY_SOURCES})