mirror of
				https://github.com/python-LimeReport/LimeReport.git
				synced 2025-10-30 21:37:14 +03:00 
			
		
		
		
	* Add missing source files to the project * Add LRDesigner to the project * Fix qzint build
		
			
				
	
	
		
			19 lines
		
	
	
		
			390 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			390 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(CMAKE_AUTOMOC ON)
 | |
| 
 | |
| set(LRDESIGNER_FILES
 | |
|     designersettingmanager.h
 | |
|     designersettingmanager.cpp
 | |
|     main.cpp
 | |
|     mainicon.rc
 | |
| )
 | |
| 
 | |
| add_executable(LRDesigner ${LRDESIGNER_FILES})
 | |
| 
 | |
| target_include_directories(LRDesigner PUBLIC ${PROJECT_SOURCE_DIR}/include)
 | |
| 
 | |
| target_link_libraries(LRDesigner PUBLIC
 | |
|     Qt${QT_VERSION_MAJOR}::Core
 | |
|     Qt${QT_VERSION_MAJOR}::Widgets
 | |
|     ${PROJECT_NAME}
 | |
| )
 |