blob: a23f166091933421454eba7d5b8f215f2e9ccb5d (
plain) (
tree)
|
|
cmake_minimum_required (VERSION 2.6)
project (expat)
file(GLOB SOURCE
"*.c"
"*.h"
)
# Set files to go to a "Sources" folder in MSVC project files:
if (MSVC)
source_group("Sources" FILES ${SOURCE})
endif()
add_library(expat ${SOURCE})
|