- Timestamp:
- 08/11/09 10:04:42 (15 years ago)
- Location:
- library
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
library/bdm/CMakeLists.txt
r419 r498 8 8 SET(bdm_mex mex/mex_datasource.h mex/mex_parser.h mex/mex_logger.h ) 9 9 10 SET(bdm_support bdmroot.cpp bdmroot.h itpp_ext.cpp itpp_ext.h osutils.cpp osutils.h shared_ptr.h) 11 12 IF(WIN32) 13 SET(bdm_support ${bdm_support} dirent.c dirent.h) 14 ENDIF() 10 15 11 16 # add BDMLIB compile flag … … 13 18 14 19 # 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})20 add_library (bdm STATIC ${bdm_support} ${bdm_base} ${bdm_math} ${bdm_stat} ${bdm_estim} ${bdm_mex} ${bdm_user_info}) -
library/tests/CMakeLists.txt
r469 r498 8 8 9 9 SET(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()14 10 15 11 add_library(testutil ${testutil_src})