CMakeLists.txt 168 Bytes
Newer Older
wangdawei's avatar
wangdawei committed
1 2 3 4 5 6 7 8 9 10 11 12 13
file(GLOB_RECURSE SRC *.cpp)
add_library(state
    SHARED
    ${SRC})

target_include_directories(state
    PUBLIC

    )

target_link_libraries(state
    PUBLIC
    )