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