mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2024-11-25 13:21:00 +00:00
Fix old/new helper binaries in unit tests failing to run on OS X 10.5 if built on OS X 10.7.
Apply the Leopard STL template symbol fix to the helper binaries. Reviewed-by: Carles Pina
This commit is contained in:
parent
2a59c6f888
commit
92ef486dc6
1 changed files with 6 additions and 0 deletions
|
@ -1,12 +1,18 @@
|
|||
|
||||
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/..")
|
||||
|
||||
if (APPLE)
|
||||
set(HELPER_SHARED_SOURCES ../StlSymbolsLeopard.cpp)
|
||||
endif()
|
||||
|
||||
# Create helper binaries for unit tests
|
||||
add_executable(oldapp
|
||||
old_app.cpp
|
||||
${HELPER_SHARED_SOURCES}
|
||||
)
|
||||
add_executable(newapp
|
||||
new_app.cpp
|
||||
${HELPER_SHARED_SOURCES}
|
||||
)
|
||||
|
||||
# Install data files required by unit tests
|
||||
|
|
Loading…
Reference in a new issue