Changeset 498

Show
Ignore:
Timestamp:
08/11/09 10:04:42 (15 years ago)
Author:
vbarta
Message:

updated build for moved sources

Location:
library
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/CMakeLists.txt

    r419 r498  
    88SET(bdm_mex mex/mex_datasource.h mex/mex_parser.h mex/mex_logger.h  ) 
    99 
     10SET(bdm_support bdmroot.cpp bdmroot.h itpp_ext.cpp itpp_ext.h osutils.cpp osutils.h shared_ptr.h) 
     11 
     12IF(WIN32) 
     13   SET(bdm_support ${bdm_support} dirent.c dirent.h) 
     14ENDIF() 
    1015 
    1116# add BDMLIB compile flag 
     
    1318 
    1419# Normal BDM library 
    15 add_library (bdm STATIC bdmroot.cpp bdmroot.h itpp_ext.cpp itpp_ext.h osutils.cpp osutils.h shared_ptr.h ${bdm_base} ${bdm_math} ${bdm_stat} ${bdm_estim} ${bdm_mex} ${bdm_user_info}) 
     20add_library (bdm STATIC ${bdm_support} ${bdm_base} ${bdm_math} ${bdm_stat} ${bdm_estim} ${bdm_mex} ${bdm_user_info}) 
  • library/tests/CMakeLists.txt

    r469 r498  
    88 
    99SET(testutil_src egiw_harness.cpp egiw_harness.h epdf_harness.cpp epdf_harness.h mat_checks.cpp mat_checks.h mpdf_harness.cpp mpdf_harness.h square_mat_point.cpp square_mat_point.h test_util.cpp test_util.h) 
    10  
    11 IF(WIN32) 
    12    SET(testutil_src ${testutil_src} dirent.c dirent.h) 
    13 ENDIF() 
    1410 
    1511add_library(testutil ${testutil_src})