Changeset 68
- Timestamp:
- 04/09/08 15:45:53 (17 years ago)
- Files:
-
- 1 removed
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
BDM.kdevelop.filelist
r62 r68 1 1 # KDevelop Custom Project File List 2 2 CMakeLists.txt 3 CMake_modules/FindITPP.cmake 3 4 bdm 4 5 bdm/CMakeLists.txt … … 23 24 bdm/stat/libFN.h 24 25 simulator_zdenek/CMakeLists.txt 26 simulator_zdenek/ekf_example/CMakeLists.txt 27 simulator_zdenek/ekf_example/ekf.cpp 28 simulator_zdenek/ekf_example/ekf.h 29 simulator_zdenek/ekf_example/ekf_obj.cpp 30 simulator_zdenek/ekf_example/ekf_obj.h 31 simulator_zdenek/ekf_example/fixed.cpp 32 simulator_zdenek/ekf_example/fixed.h 33 simulator_zdenek/ekf_example/matrix.cpp 34 simulator_zdenek/ekf_example/matrix.h 35 simulator_zdenek/ekf_example/pmsm_mod.cpp 36 simulator_zdenek/ekf_example/pmsm_mod.h 37 simulator_zdenek/ekf_example/pwm.cpp 38 simulator_zdenek/ekf_example/pwm.h 39 simulator_zdenek/ekf_example/regulace.cpp 40 simulator_zdenek/ekf_example/regulace.h 41 simulator_zdenek/ekf_example/simul.cpp 25 42 simulator_zdenek/regulace.cpp 26 43 simulator_zdenek/regulace.h … … 29 46 tests/CMakeLists.txt 30 47 tests/pmsm_sim.cpp 48 tests/pmsm_sim2.cpp 49 tests/pmsm_sim3.cpp 31 50 tests/pmsm_unkQ.cpp 32 51 tests/pmsm_unkQpf.cpp … … 39 58 tests/testResample.cpp 40 59 tests/testSmp.cpp 60 tests/testbidiff.cpp -
CMakeLists.txt
r62 r68 34 34 35 35 ELSE(WIN32) 36 FIND_PACKAGE(ITPP REQUIRED) 37 38 IF(ITPP_FOUND) 39 INCLUDE_DIRECTORIES(${ITPP_INCLUDE_DIR}) 40 LINK_DIRECTORIES(${NATIVE_ITPP_LIB_PATH}) 41 ENDIF(ITPP_FOUND) 42 36 43 #This is for UNIX makefile which does only one release at a time. 37 44 SET(CMAKE_BUILD_TYPE Debug) -
CMake_modules/FindITPP.cmake
r35 r68 10 10 FIND_PATH(ITPP_INCLUDE_DIR itpp/itbase.h 11 11 ${ITPP_DIR} 12 /usr/pkgs64/include 12 13 ) 13 14 … … 15 16 NAMES itpp itpp_debug 16 17 PATHS "${ITPP_DIR}\\win32\\lib" 18 /usr/pkgs64/lib 17 19 ) 18 20