ppsspp/ext/native/json/CMakeLists.txt
2015-09-06 12:24:17 -07:00

16 lines
242 B
CMake

set(SRCS
json_writer.cpp)
set(SRCS ${SRCS})
add_library(jsonwriter STATIC ${SRCS})
add_executable(json_writer_test json_writer_test.cpp)
target_link_libraries(json_writer_test jsonwriter)
if(UNIX)
add_definitions(-fPIC)
endif(UNIX)