cmake_minimum_required(VERSION 3.11)

project(CodeFormatLib)

add_library(CodeFormatLib SHARED)

add_subdirectory(${LuaCodeStyle_SOURCE_DIR}/3rd/lua-5.4.3 lua.out)

set_target_properties(CodeFormatLib PROPERTIES OUTPUT_NAME code_format)

add_dependencies(CodeFormatLib CodeService lua54)

target_include_directories(CodeFormatLib PUBLIC
	${LuaCodeStyle_SOURCE_DIR}/include
	${LuaCodeStyle_SOURCE_DIR}/3rd/lua-5.4.3/src
	src
)

target_sources(CodeFormatLib
	PUBLIC
	${CodeFormatLib_SOURCE_DIR}/src/CodeFormatLib.cpp
	${CodeFormatLib_SOURCE_DIR}/src/LuaCodeFormat.cpp
)

if(NOT WIN32)
    target_compile_options(CodeFormatLib PUBLIC -fPIC)
endif()

target_link_libraries(CodeFormatLib CodeService lua54)
