Created
          November 11, 2012 07:49 
        
      - 
      
 - 
        
Save hpcx82/4054106 to your computer and use it in GitHub Desktop.  
    Build lua with cmake
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | cmake_minimum_required (VERSION 2.6) | |
| project (lua) # project here actually means solution in premake | |
| if(WIN32) | |
| add_definitions( -D_CRT_SECURE_NO_WARNINGS ) | |
| endif() | |
| # 1. lua static library | |
| # how to rename library name? | |
| add_library (lualib STATIC lapi.c lcode.c lctype.c ldebug.c ldo.c ldump.c lfunc.c lgc.c llex.c lmem.c lobject.c lopcodes.c lparser.c lstate.c lstring.c ltable.c ltm.c lundump.c lvm.c lzio.c lauxlib.c lbaselib.c lbitlib.c lcorolib.c ldblib.c liolib.c lmathlib.c loslib.c lstrlib.c ltablib.c loadlib.c linit.c) | |
| set_target_properties(lualib PROPERTIES OUTPUT_NAME "lua") # rename the library output name | |
| # 2. lua interpreter | |
| link_directories (${LUA_BINARY_DIR}) | |
| add_executable (lua lua.c) | |
| target_link_libraries (lua lualib) | |
| if(UNIX) | |
| target_link_libraries( lua m ) | |
| endif() | |
| # 3. lua compiler | |
| link_directories (${LUA_BINARY_DIR}) | |
| add_executable (luac luac.c) | |
| target_link_libraries (luac lualib) | |
| if(UNIX) | |
| target_link_libraries( luac m ) | |
| endif() | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment