add basic cmake support

This commit is contained in:
Eugene Shalygin
2015-11-06 19:03:18 +01:00
committed by sledgehammer999
parent 238a925000
commit 6d2a0ae83b
26 changed files with 1242 additions and 0 deletions

10
dist/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,10 @@
if (APPLE)
add_subdirectory(mac)
else (APPLE)
if (UNIX)
add_subdirectory(unix)
endif (UNIX)
if (WIN32)
add_subdirectory(windows)
endif (WIN32)
endif (APPLE)