diff --git a/dll/win32/fusion/fusion_1_1/CMakeLists.txt b/dll/win32/fusion/fusion_1_1/CMakeLists.txt index fc494855b67..728515630c8 100644 --- a/dll/win32/fusion/fusion_1_1/CMakeLists.txt +++ b/dll/win32/fusion/fusion_1_1/CMakeLists.txt @@ -5,7 +5,7 @@ set(fusion_folder "${CMAKE_CURRENT_SOURCE_DIR}/..") spec2def(fusion.dll fusion.spec) add_library(fusion_1_1 MODULE - ${fusion_folder}/version.rc + version.rc ${CMAKE_CURRENT_BINARY_DIR}/fusion.def) set_module_type(fusion_1_1 win32dll) diff --git a/dll/win32/fusion/fusion_1_1/version.rc b/dll/win32/fusion/fusion_1_1/version.rc new file mode 100644 index 00000000000..188cc5fc4b3 --- /dev/null +++ b/dll/win32/fusion/fusion_1_1/version.rc @@ -0,0 +1,26 @@ +/* + * Copyright 2010 Louis Lenders + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#define WINE_FILEDESCRIPTION_STR "Wine assembly manager" +#define WINE_FILENAME_STR "fusion.dll" +#define WINE_FILEVERSION 1,0,0,0 +#define WINE_FILEVERSION_STR "1.0.0.0" +#define WINE_PRODUCTVERSION 1,0,0,0 +#define WINE_PRODUCTVERSION_STR "1.0.0.0" + +#include "wine/wine_common_ver.rc"