cmake: Removed useless usage of

`get_target_property( BIN2C_EXE bin2c LOCATION)`

This resolves the CMake warning on CMP0026.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/4/head
Slávek Banko 5 years ago
parent 587c08cc3f
commit 2ab7135063
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -20,10 +20,10 @@ include_directories(
# compilation, If it is possible in
# generall.
add_executable( bin2c bin2c.c )
target_link_libraries( bin2c z )
get_target_property( BIN2C_EXE bin2c LOCATION)
tde_add_executable( bin2c
SOURCES bin2c.c
LINK z
)
foreach( _img goal.png halfstone_1.png halfstone_2.png halfstone_3.png
halfstone_4.png man.png object.png saveman.png stone_1.png stone_2.png
@ -33,7 +33,7 @@ foreach( _img goal.png halfstone_1.png halfstone_2.png halfstone_3.png
endforeach( )
add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/data.c
COMMAND "${BIN2C_EXE}" \"\" ${IMAGES}
COMMAND bin2c \"\" ${IMAGES}
DEPENDS bin2c ${IMAGES}
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
)

@ -9,11 +9,9 @@
#
##################################################
get_target_property( BIN2C_EXE bin2c LOCATION)
add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/data.c
COMMAND
"${BIN2C_EXE}" \"\" "${CMAKE_CURRENT_SOURCE_DIR}/level.data"
bin2c \"\" "${CMAKE_CURRENT_SOURCE_DIR}/level.data"
DEPENDS bin2c ${CMAKE_CURRENT_SOURCE_DIR}/level.data
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)

Loading…
Cancel
Save