From 9db949eec327df4173fde3de934a87bedb0db13c Mon Sep 17 00:00:00 2001 From: Bryan O'Sullivan Date: Mon, 2 Jun 2008 21:14:31 +0000 Subject: svn merge -r88066:88786 svn+ssh://svn.lindenlab.com/svn/linden/branches/cmake-9-merge dataserver-is-deprecated for-fucks-sake-whats-with-these-commit-markers --- indra/win_updater/CMakeLists.txt | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 indra/win_updater/CMakeLists.txt (limited to 'indra/win_updater') diff --git a/indra/win_updater/CMakeLists.txt b/indra/win_updater/CMakeLists.txt new file mode 100644 index 0000000000..6379d7c59b --- /dev/null +++ b/indra/win_updater/CMakeLists.txt @@ -0,0 +1,30 @@ +# -*- cmake -*- + +project(win_updater) + +include(00-Common) +include(LLCommon) +include(Linking) + +include_directories( + ${LLCOMMON_INCLUDE_DIRS} + ) + +set(win_updater_SOURCE_FILES updater.cpp) + +set(win_updater_HEADER_FILES CMakeLists.txt) + +set_source_files_properties(${win_updater_HEADER_FILES} + PROPERTIES HEADER_FILE_ONLY TRUE) + +list(APPEND win_updater_SOURCE_FILES ${win_updater_HEADER_FILES}) + +add_executable(windows-updater WIN32 ${win_updater_SOURCE_FILES}) + +target_link_libraries(windows-updater wininet) + +set_target_properties(windows-updater + PROPERTIES + LINK_FLAGS "/NODEFAULTLIB:MSVCRT" + LINK_FLAGS_DEBUG "/NODEFAULTLIB:\"LIBCMT;MSVCRTD\"" + ) -- cgit v1.2.3