compressonator icon indicating copy to clipboard operation
compressonator copied to clipboard

CMP_CORE is relaying on ${PROJECT_FOLDER_SDK_LIBS} which is empty

Open iaomw opened this issue 1 year ago • 0 comments

I am trying to build my project with only cmp_core. But it cannot compile with ${PROJECT_FOLDER_SDK_LIBS}, because it's empty. While I see this value is been set in your root CMakeList.txt. It's way too complex to work with that file.

Here is my cmake code below. How to make it compile with cmp_core without any problem?

add_subdirectory(compressonator/cmp_core)

target_include_directories(projectname PUBLIC
    ./compressonator/cmp_core/source
)

target_link_libraries(projectname PRIVATE CMP_Core)

iaomw avatar Jun 27 '24 09:06 iaomw