Changeset 277
- Timestamp:
- 02/20/09 12:58:33 (16 years ago)
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
bdm/CMakeLists.txt
r256 r277 5 5 SET(BdmEstim estim/libKF.cpp estim/libKF.h estim/libPF.cpp estim/libPF.h estim/arx.cpp estim/arx.h estim/mixef.cpp estim/mixef.h estim/merger.cpp) 6 6 #SET(BdmUI userinfo.cpp userinfo.h) 7 SET(BdmUI uibuilder.cpp uibuilder.h libconfig/libconfigcpp.c++ libconfig/grammar.c libconfig/libconfig.c libconfig/scanner.c)7 SET(BdmUI libconfig/libconfigcpp.cc libconfig/grammar.c libconfig/libconfig.c libconfig/scanner.c uibuilder.cpp uibuilder.h ) 8 8 9 9 #IF(${XERCES_FOUND}) 10 add_library (bdm itpp_ext.cpp itpp_ext.h osutils.cpp osutils.h ${BdmMath} ${BdmStat} ${BdmEstim} ${BdmUI}) 10 add_library (bdm STATIC itpp_ext.cpp itpp_ext.h osutils.cpp osutils.h ${BdmMath} ${BdmStat} ${BdmEstim} ${BdmUI}) 11 #set_target_properties(bdm PROPERTIES DEFINE_SYMBOL LIBCONFIG_STATIC) 11 12 #ELSE(${XERCES_FOUND}) 12 13 #add_library (bdm itpp_ext.cpp itpp_ext.h osutils.cpp osutils.h ${BdmMath} ${BdmStat} ${BdmEstim}) -
bdm/libconfig/libconfig.h
r248 r277 28 28 #endif /* __cplusplus */ 29 29 30 #if defined(_WIN32) || defined(__WIN32__) || defined(WIN32)31 #if defined(LIBCONFIG_STATIC)32 30 #define LIBCONFIG_API 33 #elif defined(LIBCONFIG_EXPORTS)34 #define LIBCONFIG_API __declspec(dllexport)35 #else /* ! LIBCONFIG_EXPORTS */36 #define LIBCONFIG_API __declspec(dllimport)37 #endif /* LIBCONFIG_STATIC */38 #else /* ! WIN32 */39 #define LIBCONFIG_API40 #endif /* WIN32 */41 31 42 32 #include <stdio.h> -
doprava/matlab/k1.m
r196 r277 1 1 itload('../release/k1.it'); 2 figure(1); 3 hold off; 4 plot(xt); 5 hold on 6 plot(odh_xt,'--');