Initial setup for CLion
This commit is contained in:
26
ANSLLM/CMakeLists.txt
Normal file
26
ANSLLM/CMakeLists.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
# ANSLLM — LLM Integration DLL
|
||||
add_library(ANSLLM SHARED
|
||||
ANSLLM.cpp
|
||||
ANSLLM.h
|
||||
dllmain.cpp
|
||||
pch.cpp
|
||||
pch.h
|
||||
framework.h
|
||||
)
|
||||
|
||||
target_include_directories(ANSLLM PUBLIC
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${SHARED_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
target_link_libraries(ANSLLM
|
||||
PRIVATE ANSLicensingSystem
|
||||
PRIVATE anslicensing
|
||||
PRIVATE labview
|
||||
PRIVATE opencv
|
||||
PRIVATE chilkat
|
||||
PRIVATE boost
|
||||
)
|
||||
|
||||
target_compile_definitions(ANSLLM PRIVATE UNICODE _UNICODE ANSLLM_EXPORTS _USRDLL)
|
||||
target_precompile_headers(ANSLLM PRIVATE pch.h)
|
||||
Reference in New Issue
Block a user