1
0
cuberite-2a/lib/expat/CMakeLists.txt

16 lines
247 B
CMake
Raw Normal View History

2013-12-19 00:52:52 +00:00
cmake_minimum_required (VERSION 2.6)
project (expat)
file(GLOB SOURCE
"*.c"
2014-04-25 19:24:09 +00:00
"*.h"
2013-12-19 00:52:52 +00:00
)
# Set files to go to a "Sources" folder in MSVC project files:
if (MSVC)
source_group("Sources" FILES ${SOURCE})
endif()
2013-12-19 00:52:52 +00:00
add_library(expat ${SOURCE})