mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
added mwscript compiler standalone-executable (doesn't do anything yet)
This commit is contained in:
parent
106d12906a
commit
31e22186ef
@ -158,3 +158,13 @@ if (APPLE)
|
|||||||
MACOSX_BUNDLE_BUNDLE_NAME "OpenMW"
|
MACOSX_BUNDLE_BUNDLE_NAME "OpenMW"
|
||||||
)
|
)
|
||||||
endif (APPLE)
|
endif (APPLE)
|
||||||
|
|
||||||
|
# Tools
|
||||||
|
option(BUILD_MWCOMPILER "build standalone Morrowind script compiler" ON)
|
||||||
|
|
||||||
|
if (BUILD_MWCOMPILER)
|
||||||
|
set(TOOLS_MWCOMPILER apps/mwcompiler/main.cpp)
|
||||||
|
|
||||||
|
add_executable(mwcompiler ${TOOLS_MWCOMPILER})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
8
apps/mwcompiler/main.cpp
Normal file
8
apps/mwcompiler/main.cpp
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
// Stand-alone MW-script compiler
|
||||||
|
|
||||||
|
int main (int argc, char **argv)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user