Commit 26524fe7 authored by Davis King's avatar Davis King

Renamed a few things to make the code and messages clearer.

parent 5089196e
...@@ -387,8 +387,8 @@ if (NOT TARGET dlib) ...@@ -387,8 +387,8 @@ if (NOT TARGET dlib)
) )
include(cmake_utils/check_if_neon_available.cmake) include(cmake_utils/check_if_neon_available.cmake)
if (NEON OR COMPILER_ON_ARM_NEON) if (ARM_NEON_IS_AVAILABLE)
message ("NEON will be used for libpng.") message (STATUS "NEON instructions will be used for libpng.")
enable_language(ASM) enable_language(ASM)
set(source_files ${source_files} set(source_files ${source_files}
external/libpng/arm/arm_init.c external/libpng/arm/arm_init.c
......
...@@ -3,20 +3,18 @@ ...@@ -3,20 +3,18 @@
cmake_minimum_required(VERSION 2.8.12) cmake_minimum_required(VERSION 2.8.12)
# Don't rerun this script if its already been executed. # Don't rerun this script if its already been executed.
if (DEFINED COMPILER_ON_ARM_NEON) if (DEFINED ARM_NEON_IS_AVAILABLE)
return() return()
endif() endif()
# Set to false unless we find out otherwise in the code below. # Set to false unless we find out otherwise in the code below.
set(COMPILER_ON_ARM_NEON 0) set(ARM_NEON_IS_AVAILABLE 0)
# test if __ARM_NEON__ is defined # test if __ARM_NEON__ is defined
try_compile(test_for_neon_worked ${PROJECT_BINARY_DIR}/neon_test_build ${CMAKE_CURRENT_LIST_DIR}/test_for_neon try_compile(test_for_neon_worked ${PROJECT_BINARY_DIR}/neon_test_build ${CMAKE_CURRENT_LIST_DIR}/test_for_neon
neon_test) neon_test)
message ("ARM NEON TEST OK: ${test_for_neon_worked}")
if(test_for_neon_worked) if(test_for_neon_worked)
message ("__ARM_NEON__ defined.") message (STATUS "__ARM_NEON__ defined.")
set(COMPILER_ON_ARM_NEON 1) set(ARM_NEON_IS_AVAILABLE 1)
endif() endif()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment