Changeset 68

Show
Ignore:
Timestamp:
04/09/08 15:45:53 (16 years ago)
Author:
smidl
Message:

Vymazak Kdevelop

Files:
1 removed
3 modified

Legend:

Unmodified
Added
Removed
  • BDM.kdevelop.filelist

    r62 r68  
    11# KDevelop Custom Project File List 
    22CMakeLists.txt 
     3CMake_modules/FindITPP.cmake 
    34bdm 
    45bdm/CMakeLists.txt 
     
    2324bdm/stat/libFN.h 
    2425simulator_zdenek/CMakeLists.txt 
     26simulator_zdenek/ekf_example/CMakeLists.txt 
     27simulator_zdenek/ekf_example/ekf.cpp 
     28simulator_zdenek/ekf_example/ekf.h 
     29simulator_zdenek/ekf_example/ekf_obj.cpp 
     30simulator_zdenek/ekf_example/ekf_obj.h 
     31simulator_zdenek/ekf_example/fixed.cpp 
     32simulator_zdenek/ekf_example/fixed.h 
     33simulator_zdenek/ekf_example/matrix.cpp 
     34simulator_zdenek/ekf_example/matrix.h 
     35simulator_zdenek/ekf_example/pmsm_mod.cpp 
     36simulator_zdenek/ekf_example/pmsm_mod.h 
     37simulator_zdenek/ekf_example/pwm.cpp 
     38simulator_zdenek/ekf_example/pwm.h 
     39simulator_zdenek/ekf_example/regulace.cpp 
     40simulator_zdenek/ekf_example/regulace.h 
     41simulator_zdenek/ekf_example/simul.cpp 
    2542simulator_zdenek/regulace.cpp 
    2643simulator_zdenek/regulace.h 
     
    2946tests/CMakeLists.txt 
    3047tests/pmsm_sim.cpp 
     48tests/pmsm_sim2.cpp 
     49tests/pmsm_sim3.cpp 
    3150tests/pmsm_unkQ.cpp 
    3251tests/pmsm_unkQpf.cpp 
     
    3958tests/testResample.cpp 
    4059tests/testSmp.cpp 
     60tests/testbidiff.cpp 
  • CMakeLists.txt

    r62 r68  
    3434 
    3535ELSE(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 
    3643        #This is for UNIX makefile which does only one release at a time. 
    3744        SET(CMAKE_BUILD_TYPE Debug) 
  • CMake_modules/FindITPP.cmake

    r35 r68  
    1010FIND_PATH(ITPP_INCLUDE_DIR itpp/itbase.h 
    1111        ${ITPP_DIR} 
     12        /usr/pkgs64/include 
    1213  ) 
    1314 
     
    1516  NAMES itpp itpp_debug 
    1617  PATHS "${ITPP_DIR}\\win32\\lib" 
     18  /usr/pkgs64/lib 
    1719  ) 
    1820