Linux64 support, integrated physics/decomposition

This commit is contained in:
Siana Gearz
2013-01-13 03:23:56 +01:00
parent 85855ecd85
commit 5f3ca7fda0
51 changed files with 9268 additions and 37 deletions

View File

@@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 2.6.4)
project(ndPathingLib CXX C)
if( MSVC )
add_definitions(-D_HAS_ITERATOR_DEBUGGING=0 -D_SECURE_SCL=0 -D_CRT_SECURE_NO_WARNINGS=1)
endif( MSVC )
file (GLOB SOURCE_FILES *.cpp )
file (GLOB INCLUDE_FILES *.h )
add_library(nd_Pathing STATIC ${SOURCE_FILES} ${INCLUDE_FILES} )