
This uses `add_custom_command` to run a cmake script instead of using `configure_file` directly, which allows for adding dependencies and creates an ouput that can be depended on. It also uses `add_custom_command` instead of `add_custom_target` to create the M0 binary, since custom targets have no output file to depend on. Unfortunately, multiple targets cannot depend on the same generated file or cmake tries to run the generation multiple times in parallel. So, the .bin/.s generation is now duplicated for each target so they don't conflict. fixes #693
24 lines
844 B
CMake
24 lines
844 B
CMake
# Copyright 2013 Jared Boone <jared@sharebrained.com>
|
|
#
|
|
# This file is part of HackRF.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
# any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; see the file COPYING. If not, write to
|
|
# the Free Software Foundation, Inc., 51 Franklin Street,
|
|
# Boston, MA 02110-1301, USA.
|
|
|
|
.data
|
|
.section .m0_bin, "ax"
|
|
|
|
.incbin "${BIN}"
|