Add header. Clean-up file. Add CMake file.
This commit is contained in:
		
							parent
							
								
									f3207be963
								
							
						
					
					
						commit
						b6a2a50dd8
					
				| 
						 | 
				
			
			@ -0,0 +1,19 @@
 | 
			
		|||
# TODO: remove for release.
 | 
			
		||||
if(NOT CMAKE_BUILD_TYPE)
 | 
			
		||||
  set(CMAKE_BUILD_TYPE Debug CACHE STRING "build type")
 | 
			
		||||
endif()
 | 
			
		||||
 | 
			
		||||
# Require 3.3 and set policy CMP0057 for IN_LIST operator support
 | 
			
		||||
cmake_minimum_required(VERSION 3.3)
 | 
			
		||||
cmake_policy(SET CMP0057 NEW)
 | 
			
		||||
project(onnf)
 | 
			
		||||
 | 
			
		||||
set(CMAKE_CXX_FLAGS_DEBUG "-g")
 | 
			
		||||
set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG")
 | 
			
		||||
set(ONNF_ROOT "${CMAKE_CURRENT_SOURCE_DIR}")
 | 
			
		||||
 | 
			
		||||
# Set cxx standard only for onnf project files.
 | 
			
		||||
set(CMAKE_CXX_STANDARD 14)
 | 
			
		||||
 | 
			
		||||
add_subdirectory(src/builder)
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1,5 +1,3 @@
 | 
			
		|||
add_definitions(-DBOOST_LOG_DYN_LINK)
 | 
			
		||||
 | 
			
		||||
add_library(builder
 | 
			
		||||
        sgir.cpp
 | 
			
		||||
        )
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,3 +1,11 @@
 | 
			
		|||
//===----------------------------------------------------------------------===//
 | 
			
		||||
//
 | 
			
		||||
// Copyright 2019 The IBM Research Authors.
 | 
			
		||||
//
 | 
			
		||||
// =============================================================================
 | 
			
		||||
//
 | 
			
		||||
//===----------------------------------------------------------------------===//
 | 
			
		||||
 | 
			
		||||
#include "sgir.hpp"
 | 
			
		||||
 | 
			
		||||
//empty module for MLIR is generated to test the compile/link of MLIR code
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue