Skip to content

Commit 63cdb4a

Browse files
committed
Corrected state for v0.1.0
1 parent 7e908be commit 63cdb4a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ project("spackexample" VERSION 0.1.0)
1313
# REQUIRED
1414
# )
1515

16-
add_library(spackexamplelib filesystem/filesystem.cpp flatset/flatset.cpp yamlParser/yamlParser.cpp)
16+
# add_library(spackexamplelib filesystem/filesystem.cpp flatset/flatset.cpp yamlParser/yamlParser.cpp)
1717

1818
# set_target_properties(spackexamplelib
1919
# PROPERTIES
@@ -27,7 +27,7 @@ add_library(spackexamplelib filesystem/filesystem.cpp flatset/flatset.cpp yamlPa
2727
add_executable(spackexample main.cpp)
2828

2929
# target_link_libraries(spackexample spackexamplelib)
30-
# target_link_libraries(spackexamplelib Boost::filesystem yaml-cpp)
30+
# target_link_libraries(spackexamplelib Boost::filesystem ${YAML_CPP_LIBRARIES})
3131

3232
# target_include_directories(spackexamplelib
3333
# PRIVATE
@@ -39,7 +39,8 @@ add_executable(spackexample main.cpp)
3939

4040
# Create install targets
4141
include(GNUInstallDirs)
42-
install(TARGETS spackexample spackexamplelib
42+
install(TARGETS spackexample
43+
# install(TARGETS spackexample spackexamplelib
4344
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
4445
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
4546
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}

0 commit comments

Comments
 (0)