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