Fix: [CMake] cross-compiling requires native tools

This commit is contained in:
glx22
2020-07-01 02:52:32 +02:00
committed by Owen Rudge
parent 0b2dd2c5cd
commit a06fe8e8a7
6 changed files with 45 additions and 23 deletions

View File

@@ -1,13 +1,18 @@
cmake_minimum_required(VERSION 3.5)
project(settingsgen)
if (NOT HOST_BINARY_DIR)
project(settingsgen)
set(sourcefiles
settingsgen.cpp
../core/alloc_func.cpp
../misc/getoptdata.cpp
../ini_load.cpp
../string.cpp
)
add_definitions(-DSETTINGSGEN)
add_executable(settingsgen ${sourcefiles})
set(sourcefiles
settingsgen.cpp
../core/alloc_func.cpp
../misc/getoptdata.cpp
../ini_load.cpp
../string.cpp
)
add_definitions(-DSETTINGSGEN)
add_executable(settingsgen ${sourcefiles})
export(TARGETS settingsgen FILE ${CMAKE_BINARY_DIR}/settingsgen.cmake)
add_dependencies(tools settingsgen)
endif()