diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-08-06 13:08:04 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-08-07 08:55:24 +0300 |
commit | 30e1b61157fa6009cd302ba0475e19037f67d513 (patch) | |
tree | b8af82dbe0af57ebba73294843ea9b9e92a41c29 /sal/Module_sal.mk | |
parent | caac7011d259a6a7a22e617b27291e5c4fcbf09f (diff) |
No point with these executables for non-desktop OSes
Change-Id: If2e086cf2783c187f2cdb479608aa91561e0d674
Diffstat (limited to 'sal/Module_sal.mk')
-rw-r--r-- | sal/Module_sal.mk | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sal/Module_sal.mk b/sal/Module_sal.mk index 2a10c52f8680..7bce17b45485 100644 --- a/sal/Module_sal.mk +++ b/sal/Module_sal.mk @@ -31,8 +31,6 @@ $(eval $(call gb_Module_Module,sal)) $(eval $(call gb_Module_add_targets,sal,\ CustomTarget_generated \ CustomTarget_sal_allheaders \ - $(if $(filter $(OS),IOS),, \ - Executable_osl_process_child) \ Executable_cppunittester \ $(if $(filter $(OS),ANDROID), \ Library_lo-bootstrap) \ @@ -46,6 +44,13 @@ $(eval $(call gb_Module_add_targets,sal,\ StaticLibrary_salcpprt \ )) +ifneq (,$(filter DESKTOP,$(BUILD_TYPE))) +$(eval $(call gb_Module_add_targets,sal,\ + Executable_osl_process_child \ + CppunitTest_sal_osl_process \ +)) +endif + $(eval $(call gb_Module_add_check_targets,sal,\ CppunitTest_Module_DLL \ CppunitTest_sal_bytesequence \ @@ -57,8 +62,6 @@ $(eval $(call gb_Module_add_check_targets,sal,\ CppunitTest_sal_osl_old_test_file \ CppunitTest_sal_osl_security \ CppunitTest_sal_osl_thread \ - $(if $(filter $(OS),IOS),, \ - CppunitTest_sal_osl_process) \ CppunitTest_sal_rtl_alloc \ CppunitTest_sal_rtl_cipher \ CppunitTest_sal_rtl_crc32 \ |