mirror of
https://github.com/Icinga/icinga2.git
synced 2025-09-18 07:17:43 +02:00
parent
8d16ed8425
commit
c55bd29eda
@ -15,13 +15,6 @@
|
|||||||
# along with this program; if not, write to the Free Software Foundation
|
# along with this program; if not, write to the Free Software Foundation
|
||||||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
add_executable(mkunity mkunity.c)
|
|
||||||
|
|
||||||
set_target_properties (
|
|
||||||
mkunity PROPERTIES
|
|
||||||
FOLDER Bin
|
|
||||||
)
|
|
||||||
|
|
||||||
define_property(
|
define_property(
|
||||||
SOURCE
|
SOURCE
|
||||||
PROPERTY EXCLUDE_UNITY_BUILD
|
PROPERTY EXCLUDE_UNITY_BUILD
|
||||||
@ -29,7 +22,15 @@ define_property(
|
|||||||
FULL_DOCS "Specified whether a source file should be excluded from unity builds and should be built separately"
|
FULL_DOCS "Specified whether a source file should be excluded from unity builds and should be built separately"
|
||||||
)
|
)
|
||||||
|
|
||||||
function(MKUNITY_TARGET Prefix UnityInputRef)
|
if(ICINGA2_UNITY_BUILD)
|
||||||
|
add_executable(mkunity mkunity.c)
|
||||||
|
|
||||||
|
set_target_properties (
|
||||||
|
mkunity PROPERTIES
|
||||||
|
FOLDER Bin
|
||||||
|
)
|
||||||
|
|
||||||
|
function(MKUNITY_TARGET Prefix UnityInputRef)
|
||||||
set(UnityInput ${${UnityInputRef}})
|
set(UnityInput ${${UnityInputRef}})
|
||||||
set(UnityOutput ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}_unity.cpp)
|
set(UnityOutput ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}_unity.cpp)
|
||||||
set(RealSources "")
|
set(RealSources "")
|
||||||
@ -51,5 +52,5 @@ function(MKUNITY_TARGET Prefix UnityInputRef)
|
|||||||
)
|
)
|
||||||
list(APPEND RealSources ${UnityOutput})
|
list(APPEND RealSources ${UnityOutput})
|
||||||
set(${UnityInputRef} ${RealSources} PARENT_SCOPE)
|
set(${UnityInputRef} ${RealSources} PARENT_SCOPE)
|
||||||
endfunction()
|
endfunction()
|
||||||
|
endif()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user