You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
290 B
10 lines
290 B
enable_language(CXX)
|
|
|
|
get_filename_component(CMAKE_PREFIX_PATH "${CMAKE_BINARY_DIR}" DIRECTORY)
|
|
string(APPEND CMAKE_PREFIX_PATH "/FileSetAbsoluteInstallIncludeDirExport-build/install")
|
|
|
|
find_package(lib1 REQUIRED)
|
|
|
|
add_executable(exe main.cpp)
|
|
target_link_libraries(exe PRIVATE lib1::lib1)
|