2012-04-06 15:07:01 +02:00
|
|
|
# UNIT TESTS
|
|
|
|
|
|
|
|
add_executable(testempty1 testempty1.c)
|
|
|
|
add_executable(testempty2 testempty2.c)
|
|
|
|
target_link_libraries(testempty1 openjpeg)
|
|
|
|
target_link_libraries(testempty2 openjpeg)
|
|
|
|
|
2014-02-26 09:34:28 +01:00
|
|
|
add_test(NAME testempty1 COMMAND testempty1)
|
|
|
|
add_test(NAME testempty2 COMMAND testempty2)
|