Skip to content

Commit

Permalink
[CMake] Fix idents
Browse files Browse the repository at this point in the history
  • Loading branch information
AchimTuran committed Nov 29, 2015
1 parent 9ff4d08 commit 75c694d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
5 changes: 3 additions & 2 deletions FindTinyXML.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ if(PKG_CONFIG_FOUND)
pkg_check_modules (TINYXML tinyxml)
list(APPEND TINYXML_INCLUDE_DIRS ${TINYXML_INCLUDEDIR})
endif()

if(NOT TINYXML_FOUND)
find_path( TINYXML_INCLUDE_DIRS "tinyxml.h"
PATH_SUFFIXES "tinyxml" )
find_path(TINYXML_INCLUDE_DIRS "tinyxml.h"
PATH_SUFFIXES "tinyxml" )

find_library( TINYXML_LIBRARIES
NAMES "tinyxml"
Expand Down
11 changes: 6 additions & 5 deletions Findasplib.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,18 @@ list(APPEND ASPLIB_INCLUDE_DIRS ${ASPLIB_INCLUDEDIR})
endif()

if(NOT ASPLIB_FOUND)
find_path( ASPLIB_INCLUDE_DIRS "apslib_BiquadFactory.h"
find_path(ASPLIB_INCLUDE_DIRS "apslib_BiquadFactory.h"
ASPLIB_INCLUDE_DIRS "Biquads/Biquad_Native/asplib_Biquad_Native.h"
ASPLIB_INCLUDE_DIRS "constants_typedefs/asplib_constants.h"
ASPLIB_INCLUDE_DIRS "constants_typedefs/asplib_typedefs.h"
ASPLIB_INCLUDE_DIRS "interfaces/asplib_IBaseBiquad.h"
PATH_SUFFIXES "asplib" )
find_library( ASPLIB_LIBRARIES
NAMES "asplib"
PATH_SUFFIXES "asplib" )

find_library(ASPLIB_LIBRARIES
NAMES "asplib"
PATH_SUFFIXES "asplib" )
endif()

# handle the QUIETLY and REQUIRED arguments and set SAMPLERATE_FOUND to TRUE if
# all listed variables are TRUE
include( "FindPackageHandleStandardArgs" )
Expand Down

0 comments on commit 75c694d

Please sign in to comment.