axmol/cocos/storage/CMakeLists.txt

14 lines
271 B
CMake
Raw Normal View History

set(COCOS_STORAGE_SRC
2014-08-07 15:07:29 +08:00
local-storage/LocalStorage.cpp
)
add_library(sqlite3 STATIC
${COCOS_STORAGE_SRC}
)
set_target_properties(sqlite3
PROPERTIES
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
)