Changeset 691 for library/tests

Show
Ignore:
Timestamp:
11/02/09 16:42:44 (15 years ago)
Author:
mido
Message:

the real update of libconfig with an addaptation of its directories
all cfg files added directly into VS solution (this change is actually concerning only the \tests directory)

Location:
library/tests
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • library/tests/CMakeLists.txt

    r629 r691  
    2727EXEC(arx_test) 
    2828EXEC(arx_elem_test) 
     29 
    2930EXEC(merger_2d_test) 
    3031EXEC(merger_iter_test) 
     
    3940 
    4041# using UnitTest++ 
     42 
     43SET(unit_test_configurations  mepdf.cfg egiw.cfg mlnorm.cfg edirich.cfg mprod.cfg generator.cfg epdfds.cfg mpdfds.cfg test_user_info_input.cfg merger.cfg erroneous.cfg egamma.cfg test_user_info_external.cfg merger_error.cfg mgamma.cfg enorm.cfg) 
     44 
    4145add_executable(testsuite arx_straux_test.cpp datalink_test.cpp  datasource_test.cpp egiw_test.cpp emix_test.cpp epdf_test.cpp logger_test.cpp LQG_test.cpp merger_test.cpp  
    42         mpdf_test.cpp randun_test.cpp rectangular_support_test.cpp rv_test.cpp shared_ptr_test.cpp square_mat_test.cpp testsuite.cpp user_info_test.cpp) 
     46        mpdf_test.cpp randun_test.cpp rectangular_support_test.cpp rv_test.cpp shared_ptr_test.cpp square_mat_test.cpp testsuite.cpp user_info_test.cpp  ${unit_test_configurations} ) 
     47 
     48set_source_files_properties(${unit_test_configurations} PROPERTIES HEADER_FILE_ONLY TRUE) 
     49source_group(Configurations FILES ${unit_test_configurations}) 
     50 
    4351target_link_libraries(testsuite testutil unittest) 
    4452LINK_EXEC(testsuite) 
  • library/tests/unittest-cpp/CMakeLists.txt

    r689 r691  
    1313 
    1414# From CMake version 2.8, it is not allowed to add subdirectories without  
    15 # their CMakeLists, therfore were the following two lines commented out: 
     15# their CMakeLists, therfore the following two lines were commented out: 
    1616# add_subdirectory(Posix) 
    1717# add_subdirectory(Win32)