Previous 199869 Revisions Next

r41654 Sunday 8th November, 2015 at 12:44:34 UTC by Miodrag Milanović
Remove not longer needed ForceCpp flag (nw)
[3rdparty/genie/src]_manifest.lua
[3rdparty/genie/src/host]scripts.c
[scripts/build]makedep.py
[scripts/src]3rdparty.lua devices.lua emu.lua lib.lua main.lua netlist.lua tests.lua tools.lua
[scripts/src/osd]modules.lua osdmini.lua sdl.lua windows.lua
[scripts/target/ldplayer]ldplayer.lua
[scripts/target/mame]arcade.lua dummy.lua mess.lua nl.lua tiny.lua

trunk/3rdparty/genie/src/_manifest.lua
r250165r250166
4545      "actions/codelite/codelite_workspace.lua",
4646      "actions/codelite/codelite_project.lua",
4747
48      -- CodeLite action
49      "actions/cmake/_cmake.lua",
50      "actions/cmake/cmake_workspace.lua",
51      "actions/cmake/cmake_project.lua",
52
4853      -- GNU make action
4954      "actions/make/_make.lua",
5055      "actions/make/make_solution.lua",
trunk/3rdparty/genie/src/host/scripts.c
r250165r250166
169169   ", defines, options)\nfor _,v in ipairs(table.join(cfg.includedirs, cfg.resincludedirs)) do\n_p('        <IncludePath Value=\"%s\"/>', premake.esc(v))\nend\n_p('      </ResourceCompiler>')\nelse\n_p('      <ResourceCompiler Required=\"no\" Options=\"\"/>')\nend\nif #cfg.prebuildcommands > 0 then\n_p('      <PreBuild>')\nfor _,v in ipairs(cfg.prebuildcommands) do\n_p('        <Command Enabled=\"yes\">%s</Command>', premake.esc(v))\nend\n_p('      </PreBuild>')\nend\nif #cfg.postbuildcommands > 0 then\n_p('      <PostBuild>')\nfor _,v in ipairs(cfg.postbuildcommands) do\n_p('        <Command Enabled=\"yes\">%s</Command>', premake.esc(v))\nend\n_p('      </PostBuild>')\nend\n_p('      <CustomBuild Enabled=\"no\">')\n_p('        <CleanCommand></CleanCommand>')\n_p('        <BuildCommand></BuildCommand>')\n_p('        <SingleFileCommand></SingleFileCommand>')\n_p('        <MakefileGenerationCommand></MakefileGenerationCommand>')\n_p('        <ThirdPartyToolName>None</ThirdPartyToolName>')\n_p('        <WorkingDirect"
170170   "ory></WorkingDirectory>')\n_p('      </CustomBuild>')\n_p('      <AdditionalRules>')\n_p('        <CustomPostBuild></CustomPostBuild>')\n_p('        <CustomPreBuild></CustomPreBuild>')\n_p('      </AdditionalRules>')\n_p('    </Configuration>')\nend\nend\n_p('  </Settings>')\nfor _, platform in ipairs(platforms) do\nfor cfg in premake.eachconfig(prj, platform) do\n_p('  <Dependencies name=\"%s\">', cfg.longname:gsub(\"|\",\"_\"))\nfor _,dep in ipairs(premake.getdependencies(prj)) do\n_p('    <Project Name=\"%s\"/>', dep.name)\nend\n_p('  </Dependencies>')\nend\nend\n_p('</CodeLite_Project>')\nend\n",
171171
172   /* actions/cmake/_cmake.lua */
173   "premake.cmake = { }\nnewaction {\ntrigger         = \"cmake\",\nshortname       = \"CMake\",\ndescription     = \"Generate CMake project files\",\nvalid_kinds     = { \"ConsoleApp\", \"WindowedApp\", \"StaticLib\", \"SharedLib\" },\nvalid_languages = { \"C\", \"C++\" },\nvalid_tools     = {\ncc   = { \"gcc\" },\n},\nonsolution = function(sln)\npremake.generate(sln, \"CMakeLists.txt\", premake.cmake.workspace)\nend,\nonproject = function(prj)\npremake.generate(prj, \"%%/CMakeLists.txt\", premake.cmake.project)\nend,\noncleansolution = function(sln)\npremake.clean.file(sln, \"CMakeLists.txt\")\nend,\noncleanproject = function(prj)\npremake.clean.file(prj, \"%%/CMakeLists.txt\")\nend\n}\n",
174
175   /* actions/cmake/cmake_workspace.lua */
176   "function premake.cmake.workspace(sln)\n_p('cmake_minimum_required(VERSION 2.8.4)')\n_p('')\nfor i,prj in ipairs(sln.projects) do\nlocal name = premake.esc(prj.name)\n_p('add_subdirectory(%s)', name)\nend\nend\n",
177
178   /* actions/cmake/cmake_project.lua */
179   "local cmake = premake.cmake\nlocal tree = premake.tree\nfunction cmake.files(prj)\nlocal tr = premake.project.buildsourcetree(prj)\ntree.traverse(tr, {\nonbranchenter = function(node, depth)\nend,\nonbranchexit = function(node, depth)\nend,\nonleaf = function(node, depth)\n_p(1, '../%s', node.cfg.name)\nend,\n}, true, 1)\nend\nfunction premake.cmake.project(prj)\nio.indent = \"  \"\n_p('cmake_minimum_required(VERSION 2.8.4)')\n_p('')\n_p('project(%s)', premake.esc(prj.name))\n_p('set(')\n_p('source_list')\ncmake.files(prj)\n_p(')')\nlocal platforms = premake.filterplatforms(prj.solution, premake[_OPTIONS.cc].platforms, \"Native\")\nfor i = #platforms, 1, -1 do\nif premake.platforms[platforms[i]].iscrosscompiler then\ntable.remove(platforms, i)\nend\nend \nfor _, platform in ipairs(platforms) do\nfor cfg in premake.eachconfig(prj, platform) do\nfor _,v in ipairs(cfg.includedirs) do\n_p('include_directories(../%s)', premake.esc(v))\nend\nend\nend\nif (prj.kind=='StaticLib') then\n_p('add_library(%s STATIC ${sour"
180   "ce_list})',premake.esc(prj.name))\nend\nif (prj.kind=='SharedLib') then\n_p('add_library(%s SHARED ${source_list})',premake.esc(prj.name))\nend\nif (prj.kind=='ConsoleApp') then\n_p('add_executable(%s ${source_list})',premake.esc(prj.name))\nend\nif (prj.kind=='WindowedApp') then\n_p('add_executable(%s ${source_list})',premake.esc(prj.name))\nend\nend\n",
181
172182   /* actions/make/_make.lua */
173183   "_MAKE = { }\npremake.make = { }\nlocal make = premake.make\nfunction _MAKE.esc(value)\nlocal result\nif (type(value) == \"table\") then\nresult = { }\nfor _,v in ipairs(value) do\ntable.insert(result, _MAKE.esc(v))\nend\nreturn result\nelse\nresult = value:gsub(\"\\\\\", \"\\\\\\\\\")\nresult = result:gsub(\" \", \"\\\\ \")\nresult = result:gsub(\"%%(\", \"\\\\%(\")\nresult = result:gsub(\"%%)\", \"\\\\%)\")\nresult = result:gsub(\"$\\\\%((.-)\\\\%)\", \"$%(%1%)\")\nreturn result\nend\nend\nfunction premake.make_copyrule(source, target)\n_p('%s: %s', target, source)\n_p('\\t@echo Copying $(notdir %s)', target)\n_p('\\t-$(call COPY,%s,%s)', source, target)\nend\nfunction premake.make_mkdirrule(var)\n_p('\\t@echo Creating %s', var)\n_p('\\t-$(call MKDIR,%s)', var)\n_p('')\nend\nfunction make.list(value)\nif #value > 0 then\nreturn \" \" .. table.concat(value, \" \")\nelse\nreturn \"\"\nend\nend\nfunction _MAKE.getmakefilename(this, searchprjs)\nlocal count = 0\nfor sln in premake.solution.each() do\nif (sln.loca"
174184   "tion == this.location) then count = count + 1 end\nif (searchprjs) then\nfor _,prj in ipairs(sln.projects) do\nif (prj.location == this.location) then count = count + 1 end\nend\nend\nend\nif (count == 1) then\nreturn \"Makefile\"\nelse\nreturn this.name .. \".make\"\nend\nend\nfunction _MAKE.getnames(tbl)\nlocal result = table.extract(tbl, \"name\")\nfor k,v in pairs(result) do\nresult[k] = _MAKE.esc(v)\nend\nreturn result\nend\nfunction make.settings(cfg, cc)\nif #cfg.makesettings > 0 then\nfor _, value in ipairs(cfg.makesettings) do\n_p(value)\nend\nend\nlocal toolsettings = cc.platforms[cfg.platform].cfgsettings\nif toolsettings then\n_p(toolsettings)\nend\nend\nnewaction {\ntrigger         = \"gmake\",\nshortname       = \"GNU Make\",\ndescription     = \"Generate GNU makefiles for POSIX, MinGW, and Cygwin\",\nvalid_kinds     = { \"ConsoleApp\", \"WindowedApp\", \"StaticLib\", \"SharedLib\" },\nvalid_languages = { \"C\", \"C++\", \"C#\" },\nvalid_tools     = {\ncc     = { \"gcc\" },\ndotnet = { \"mono\", "
trunk/scripts/build/makedep.py
r250165r250166
4545def add_rest_if_exists(root, srcfile,folder):
4646    t = srcfile.rsplit('/', 2)
4747    if t[1]=='includes':
48        t[2] = t[2].replace('.h','.c')
48        t[2] = t[2].replace('.h','.cpp')
4949        t[1] = 'drivers'     
5050        add_c_if_exists(root,"/".join(t))
5151        parse_file_for_deps(root, "/".join(t), folder)
r250165r250166
102102                   continue
103103               if fullname!='':
104104                   deps_files_included.append(fullname)
105                   add_c_if_exists(root, fullname.replace('.h','.c'))
105                   add_c_if_exists(root, fullname.replace('.h','.cpp'))
106106                   add_rest_if_exists(root, fullname,folder)
107107                   newfolder = fullname.rsplit('/', 1)[0] + '/'
108108                   parse_file_for_deps(root, fullname, newfolder)
r250165r250166
161161                   newfolder = fullname.rsplit('/', 1)[0] + '/'
162162                   parse_file(root, fullname, newfolder)
163163                   if (fullname.endswith('.h')):
164                       parse_file(root, fullname.replace('.h','.c'), newfolder)
164                       parse_file(root, fullname.replace('.h','.cpp'), newfolder)
165165               continue
166166    fp.close()
167167    return 0
r250165r250166
280280    sys.stdout.write('    kind (LIBTYPE)\n')
281281    sys.stdout.write('    uuid (os.uuid("drv-mame-%s"))\n' % sys.argv[4])
282282    sys.stdout.write('    \n')
283    sys.stdout.write('    options {\n')
284    sys.stdout.write('        "ForceCPP",\n')
285    sys.stdout.write('    }\n')
286    sys.stdout.write('    \n')
287283    sys.stdout.write('    includedirs {\n')
288284    sys.stdout.write('        MAME_DIR .. "src/osd",\n')
289285    sys.stdout.write('        MAME_DIR .. "src/emu",\n')
trunk/scripts/src/3rdparty.lua
r250165r250166
2222      }
2323   configuration { }
2424     
25   options {
26      "ForceCPP",
27   }
28
2925   files {
3026      MAME_DIR .. "3rdparty/expat/lib/xmlparse.c",
3127      MAME_DIR .. "3rdparty/expat/lib/xmlrole.c",
r250165r250166
475471   
476472   configuration { }
477473
478   options {
479      "ForceCPP",
480   }
481
482474   includedirs {
483475      MAME_DIR .. "3rdparty/jsoncpp/include",
484476   }
trunk/scripts/src/devices.lua
r250165r250166
1212   kind (LIBTYPE)
1313   targetsubdir(_target .."_" .. _subtarget)
1414   options {
15      "ForceCPP",
1615      "ArchiveSplit",
1716   }
1817
r250165r250166
5352   kind (LIBTYPE)
5453   targetsubdir(_target .."_" .. _subtarget)
5554   options {
56      "ForceCPP",
5755      "ArchiveSplit",
5856   }
5957
r250165r250166
9088   uuid ("f2d28b0a-6da5-4f78-b629-d834aa00429d")
9189   kind (LIBTYPE)
9290   targetsubdir(_target .."_" .. _subtarget)
93   options {
94      "ForceCPP",
95   }
9691
9792   includedirs {
9893      MAME_DIR .. "src/osd",
trunk/scripts/src/emu.lua
r250165r250166
55targetsubdir(_OPTIONS["target"] .."_" .. _OPTIONS["subtarget"])
66uuid ("e6fa15e4-a354-4526-acef-13c8e80fcacf")
77kind (LIBTYPE)
8options {
9   "ForceCPP",
10}
118
129includedirs {
1310   MAME_DIR .. "src/osd",
trunk/scripts/src/lib.lua
r250165r250166
55   uuid "22489ad0-4cb2-4d91-ad81-24b0d80ca30a"
66   kind (LIBTYPE)
77
8   options {
9      "ForceCPP",
10   }
11
128   includedirs {
139      MAME_DIR .. "src/osd",
1410      MAME_DIR .. "src/lib/util",
r250165r250166
10298   kind (LIBTYPE)
10399
104100   options {
105      "ForceCPP",
106101      "ArchiveSplit",
107102   }
108103
trunk/scripts/src/main.lua
r250165r250166
1818   uuid (os.uuid(_target .."_" .. _subtarget))
1919   kind "ConsoleApp"
2020
21   options {
22      "ForceCPP",
23   }
2421   flags {
2522      "NoManifest",
2623      "Symbols", -- always include minimum symbols for executables
trunk/scripts/src/netlist.lua
r250165r250166
55   uuid "665ef8ac-2a4c-4c3e-a05f-fd1e5db11de9"
66   kind (LIBTYPE)
77
8   options {
9      "ForceCPP",
10   }
11
128   includedirs {
139      MAME_DIR .. "src/lib/netlist",
1410      MAME_DIR .. "src/osd",
trunk/scripts/src/osd/modules.lua
r250165r250166
3333      "SingleOutputDir",
3434   }
3535
36   options {
37      "ForceCPP",
38   }
39
4036   files {
4137      MAME_DIR .. "src/osd/osdnet.cpp",
4238      MAME_DIR .. "src/osd/modules/lib/osdobj_common.cpp",
trunk/scripts/src/osd/osdmini.lua
r250165r250166
1313      "SingleOutputDir",
1414   }
1515   
16   options {
17      "ForceCPP",
18   }
19
2016   dofile("osdmini_cfg.lua")
2117   
2218   includedirs {
r250165r250166
5652   uuid (os.uuid("ocore_" .. _OPTIONS["osd"]))
5753   kind (LIBTYPE)
5854
59   options {
60      "ForceCPP",
61   }
62
6355   removeflags {
6456      "SingleOutputDir",   
6557   }
trunk/scripts/src/osd/sdl.lua
r250165r250166
327327
328328   if _OPTIONS["targetos"]=="macosx" then
329329      files {
330         MAME_DIR .. "src/osd/modules/debugger/debugosx.m",
331         MAME_DIR .. "src/osd/modules/debugger/osx/breakpointsview.m",
332         MAME_DIR .. "src/osd/modules/debugger/osx/consoleview.m",
333         MAME_DIR .. "src/osd/modules/debugger/osx/debugcommandhistory.m",
334         MAME_DIR .. "src/osd/modules/debugger/osx/debugconsole.m",
335         MAME_DIR .. "src/osd/modules/debugger/osx/debugview.m",
336         MAME_DIR .. "src/osd/modules/debugger/osx/debugwindowhandler.m",
337         MAME_DIR .. "src/osd/modules/debugger/osx/deviceinfoviewer.m",
338         MAME_DIR .. "src/osd/modules/debugger/osx/devicesviewer.m",
339         MAME_DIR .. "src/osd/modules/debugger/osx/disassemblyview.m",
340         MAME_DIR .. "src/osd/modules/debugger/osx/disassemblyviewer.m",
341         MAME_DIR .. "src/osd/modules/debugger/osx/errorlogview.m",
342         MAME_DIR .. "src/osd/modules/debugger/osx/errorlogviewer.m",
343         MAME_DIR .. "src/osd/modules/debugger/osx/memoryview.m",
344         MAME_DIR .. "src/osd/modules/debugger/osx/memoryviewer.m",
345         MAME_DIR .. "src/osd/modules/debugger/osx/pointsviewer.m",
346         MAME_DIR .. "src/osd/modules/debugger/osx/registersview.m",
347         MAME_DIR .. "src/osd/modules/debugger/osx/watchpointsview.m",
330         MAME_DIR .. "src/osd/modules/debugger/debugosx.mm",
331         MAME_DIR .. "src/osd/modules/debugger/osx/breakpointsview.mm",
332         MAME_DIR .. "src/osd/modules/debugger/osx/consoleview.mm",
333         MAME_DIR .. "src/osd/modules/debugger/osx/debugcommandhistory.mm",
334         MAME_DIR .. "src/osd/modules/debugger/osx/debugconsole.mm",
335         MAME_DIR .. "src/osd/modules/debugger/osx/debugview.mm",
336         MAME_DIR .. "src/osd/modules/debugger/osx/debugwindowhandler.mm",
337         MAME_DIR .. "src/osd/modules/debugger/osx/deviceinfoviewer.mm",
338         MAME_DIR .. "src/osd/modules/debugger/osx/devicesviewer.mm",
339         MAME_DIR .. "src/osd/modules/debugger/osx/disassemblyview.mm",
340         MAME_DIR .. "src/osd/modules/debugger/osx/disassemblyviewer.mm",
341         MAME_DIR .. "src/osd/modules/debugger/osx/errorlogview.mm",
342         MAME_DIR .. "src/osd/modules/debugger/osx/errorlogviewer.mm",
343         MAME_DIR .. "src/osd/modules/debugger/osx/memoryview.mm",
344         MAME_DIR .. "src/osd/modules/debugger/osx/memoryviewer.mm",
345         MAME_DIR .. "src/osd/modules/debugger/osx/pointsviewer.mm",
346         MAME_DIR .. "src/osd/modules/debugger/osx/registersview.mm",
347         MAME_DIR .. "src/osd/modules/debugger/osx/watchpointsview.mm",
348348      }
349349      if _OPTIONS["SDL_LIBVER"]=="sdl" then
350350         -- SDLMain_tmpl isn't necessary for SDL2
351351         files {
352            MAME_DIR .. "src/osd/sdl/SDLMain_tmpl.m",
352            MAME_DIR .. "src/osd/sdl/SDLMain_tmpl.mm",
353353         }
354354      end
355355   end
r250165r250166
375375   uuid (os.uuid("ocore_" .. _OPTIONS["osd"]))
376376   kind (LIBTYPE)
377377
378   options {
379      "ForceCPP",
380   }
381
382378   removeflags {
383379      "SingleOutputDir",
384380   }
r250165r250166
418414
419415   if _OPTIONS["targetos"]=="macosx" then
420416      files {
421         MAME_DIR .. "src/osd/sdl/osxutils.m",
417         MAME_DIR .. "src/osd/sdl/osxutils.mm",
422418      }
423419   end
424420
r250165r250166
432428      uuid ("744cec21-c3b6-4d69-93cb-6811fed0ffe3")
433429      kind "ConsoleApp"
434430
435      options {
436         "ForceCPP",
437      }
438
439431      flags {
440432         "Symbols", -- always include minimum symbols for executables   
441433      }
r250165r250166
482474      elseif _OPTIONS["targetos"] == "macosx" and _OPTIONS["SDL_LIBVER"] == "sdl" then
483475         -- SDLMain_tmpl isn't necessary for SDL2
484476         files {
485            MAME_DIR .. "src/osd/sdl/SDLMain_tmpl.m",
477            MAME_DIR .. "src/osd/sdl/SDLMain_tmpl.mm",
486478         }
487479      end
488480end
r250165r250166
497489      uuid ("3db8316d-fad7-4f5b-b46a-99373c91550e")
498490      kind "ConsoleApp"
499491
500      options {
501         "ForceCPP",
502      }
503
504492      flags {
505493         "Symbols", -- always include minimum symbols for executables   
506494      }
r250165r250166
528516      }
529517
530518      files {
531         MAME_DIR .. "src/osd/sdl/aueffectutil.m",
519         MAME_DIR .. "src/osd/sdl/aueffectutil.mm",
532520      }
533521end
trunk/scripts/src/osd/windows.lua
r250165r250166
160160   uuid (os.uuid("ocore_" .. _OPTIONS["osd"]))
161161   kind (LIBTYPE)
162162
163   options {
164      "ForceCPP",
165   }
166163   removeflags {
167164      "SingleOutputDir",
168165   }
r250165r250166
221218      uuid ("061293ca-7290-44ac-b2b5-5913ae8dc9c0")
222219      kind "ConsoleApp"
223220
224      options {
225         "ForceCPP",
226      }
227
228221      flags {
229222         "Symbols", -- always include minimum symbols for executables   
230223      }
trunk/scripts/src/tests.lua
r250165r250166
99uuid ("66d4c639-196b-4065-a411-7ee9266564f5")
1010kind "ConsoleApp"   
1111
12options {
13   "ForceCPP",
14}
15
1612flags {
1713   "Symbols", -- always include minimum symbols for executables   
1814}
trunk/scripts/src/tools.lua
r250165r250166
99uuid ("1b40275b-194c-497b-8abd-9338775a21b8")
1010kind "ConsoleApp"   
1111
12options {
13   "ForceCPP",
14}
15
1612flags {
1713   "Symbols", -- always include minimum symbols for executables   
1814}
r250165r250166
5450uuid ("7d948868-42db-432a-9bb5-70ce5c5f4620")
5551kind "ConsoleApp"   
5652
57options {
58   "ForceCPP",
59}
60
6153flags {
6254   "Symbols", -- always include minimum symbols for executables   
6355}
r250165r250166
112104uuid ("bda60edb-f7f5-489f-b232-23d33c43dda1")
113105kind "ConsoleApp"   
114106
115options {
116   "ForceCPP",
117}
118
119107flags {
120108   "Symbols", -- always include minimum symbols for executables   
121109}
r250165r250166
157145uuid ("65f81d3b-299a-4b08-a3fa-d5241afa9fd1")
158146kind "ConsoleApp"   
159147
160options {
161   "ForceCPP",
162}
163
164148flags {
165149   "Symbols", -- always include minimum symbols for executables   
166150}
r250165r250166
218202uuid ("3401561a-4407-4e13-9c6d-c0801330f7cc")
219203kind "ConsoleApp"   
220204
221options {
222   "ForceCPP",
223}
224
225205flags {
226206   "Symbols", -- always include minimum symbols for executables   
227207}
r250165r250166
275255uuid ("3e66560d-b928-4227-928b-eadd0a10f00a")
276256kind "ConsoleApp"   
277257
278options {
279   "ForceCPP",
280}
281
282258flags {
283259   "Symbols", -- always include minimum symbols for executables   
284260}
r250165r250166
332308uuid ("7f6de580-d800-4e8d-bed6-9fc86829584d")
333309kind "ConsoleApp"   
334310
335options {
336   "ForceCPP",
337}
338
339311flags {
340312   "Symbols", -- always include minimum symbols for executables   
341313}
r250165r250166
377349uuid ("4dd58139-313a-42c5-965d-f378bdeed220")
378350kind "ConsoleApp"   
379351
380options {
381   "ForceCPP",
382}
383
384352flags {
385353   "Symbols", -- always include minimum symbols for executables   
386354}
r250165r250166
422390uuid ("b31e963a-09ef-4696-acbd-e663e35ce6f7")
423391kind "ConsoleApp"   
424392
425options {
426   "ForceCPP",
427}
428
429393flags {
430394   "Symbols", -- always include minimum symbols for executables   
431395}
r250165r250166
467431uuid ("8ef6ff18-3199-4cc2-afd0-d64033070faa")
468432kind "ConsoleApp"   
469433
470options {
471   "ForceCPP",
472}
473
474434flags {
475435   "Symbols", -- always include minimum symbols for executables   
476436}
r250165r250166
523483uuid ("61f647d9-b129-409b-9c62-8acf98ed39be")
524484kind "ConsoleApp"   
525485
526options {
527   "ForceCPP",
528}
529
530486flags {
531487   "Symbols", -- always include minimum symbols for executables   
532488}
r250165r250166
568524uuid ("853a03b7-fa37-41a8-8250-0dc23dd935d6")
569525kind "ConsoleApp"   
570526
571options {
572   "ForceCPP",
573}
574
575527flags {
576528   "Symbols", -- always include minimum symbols for executables   
577529}
r250165r250166
626578uuid ("7c5396d1-2a1a-4c93-bed6-6b8fa182054a")
627579kind "ConsoleApp"
628580
629options {
630  "ForceCPP",
631}
632
633581flags {
634582  "Symbols", -- always include minimum symbols for executables 
635583}
r250165r250166
662610uuid ("7d9ed428-e2ba-4448-832d-d882a64d5c22")
663611kind "ConsoleApp"   
664612
665options {
666   "ForceCPP",
667}
668
669613flags {
670614   "Symbols", -- always include minimum symbols for executables   
671615}
r250165r250166
720664uuid ("85d8e3a6-1661-4ac9-8c21-281d20cbaf5b")
721665kind "ConsoleApp"   
722666
723options {
724   "ForceCPP",
725}
726
727667flags {
728668   "Symbols", -- always include minimum symbols for executables   
729669}
r250165r250166
779719uuid ("f3707807-e587-4297-a5d8-bc98f3d0b1ca")
780720kind "ConsoleApp"   
781721
782options {
783   "ForceCPP",
784}
785
786722flags {
787723   "Symbols", -- always include minimum symbols for executables   
788724}
trunk/scripts/target/ldplayer/ldplayer.lua
r250165r250166
5757   kind (LIBTYPE)
5858   uuid (os.uuid("drvldplayer"))
5959   
60   options {
61      "ForceCPP",
62   }
63   
6460   includedirs {
6561      MAME_DIR .. "src/osd",
6662      MAME_DIR .. "src/emu",
trunk/scripts/target/mame/arcade.lua
r250165r250166
765765   kind (LIBTYPE)
766766   uuid (os.uuid("drv-" .. _target .."_" .. _subtarget .. "_" .._name))
767767
768   options {
769      "ForceCPP",
770   }
771
772768   includedirs {
773769      MAME_DIR .. "src/osd",
774770      MAME_DIR .. "src/emu",
trunk/scripts/target/mame/dummy.lua
r250165r250166
1818   kind (LIBTYPE)
1919   uuid (os.uuid("drv-mame_dummy"))
2020   
21   options {
22      "ForceCPP",
23   }
24   
2521   includedirs {
2622      MAME_DIR .. "src/osd",
2723      MAME_DIR .. "src/emu",
trunk/scripts/target/mame/mess.lua
r250165r250166
880880   kind (LIBTYPE)
881881   uuid (os.uuid("drv-" .. _target .."_" .. _subtarget .. "_" .._name))
882882
883   options {
884      "ForceCPP",
885   }
886
887883   includedirs {
888884      MAME_DIR .. "src/osd",
889885      MAME_DIR .. "src/emu",
trunk/scripts/target/mame/nl.lua
r250165r250166
8585   kind (LIBTYPE)
8686   uuid (os.uuid("drv-mame-nl"))
8787   
88   options {
89      "ForceCPP",
90   }
91   
9288   includedirs {
9389      MAME_DIR .. "src/osd",
9490      MAME_DIR .. "src/emu",
trunk/scripts/target/mame/tiny.lua
r250165r250166
8181   kind (LIBTYPE)
8282   uuid (os.uuid("drv-mame-tiny"))
8383   
84   options {
85      "ForceCPP",
86   }
87   
8884   includedirs {
8985      MAME_DIR .. "src/osd",
9086      MAME_DIR .. "src/emu",


Previous 199869 Revisions Next


© 1997-2024 The MAME Team