mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-01-06 00:31:10 +01:00
copy .dll for unit-test
Fix 2nd problem in issue #200. * http://stackoverflow.com/questions/10671916/how-to-copy-dll-files-into-the-same-folder-as-the-executable-using-cmake Q: What about the Python tests? A: They are not normally run in Visual Studio. If desired, one can set PATH.
This commit is contained in:
parent
f57da48f48
commit
13e063c336
@ -1,3 +1,4 @@
|
|||||||
|
# vim: et ts=4 sts=4 sw=4 tw=0
|
||||||
|
|
||||||
IF(JSONCPP_LIB_BUILD_SHARED)
|
IF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
ADD_DEFINITIONS( -DJSON_DLL )
|
ADD_DEFINITIONS( -DJSON_DLL )
|
||||||
@ -22,9 +23,19 @@ ENDIF(JSONCPP_LIB_BUILD_SHARED)
|
|||||||
# Run unit tests in post-build
|
# Run unit tests in post-build
|
||||||
# (default cmake workflow hides away the test result into a file, resulting in poor dev workflow?!?)
|
# (default cmake workflow hides away the test result into a file, resulting in poor dev workflow?!?)
|
||||||
IF(JSONCPP_WITH_POST_BUILD_UNITTEST)
|
IF(JSONCPP_WITH_POST_BUILD_UNITTEST)
|
||||||
ADD_CUSTOM_COMMAND( TARGET jsoncpp_test
|
IF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
POST_BUILD
|
# First, copy the shared lib, for Microsoft.
|
||||||
COMMAND $<TARGET_FILE:jsoncpp_test>)
|
# Then, run the test executable.
|
||||||
|
ADD_CUSTOM_COMMAND( TARGET jsoncpp_test
|
||||||
|
POST_BUILD
|
||||||
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:jsoncpp_lib> $<TARGET_FILE_DIR:jsoncpp_test>
|
||||||
|
COMMAND $<TARGET_FILE:jsoncpp_test>)
|
||||||
|
ELSE(JSONCPP_LIB_BUILD_SHARED)
|
||||||
|
# Just run the test executable.
|
||||||
|
ADD_CUSTOM_COMMAND( TARGET jsoncpp_test
|
||||||
|
POST_BUILD
|
||||||
|
COMMAND $<TARGET_FILE:jsoncpp_test>)
|
||||||
|
ENDIF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
ENDIF(JSONCPP_WITH_POST_BUILD_UNITTEST)
|
ENDIF(JSONCPP_WITH_POST_BUILD_UNITTEST)
|
||||||
|
|
||||||
SET_TARGET_PROPERTIES(jsoncpp_test PROPERTIES OUTPUT_NAME jsoncpp_test)
|
SET_TARGET_PROPERTIES(jsoncpp_test PROPERTIES OUTPUT_NAME jsoncpp_test)
|
||||||
|
Loading…
Reference in New Issue
Block a user